Search the web
Sign In
New User? Sign Up
palace-client · Independent Forum for the Palace Client
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 559 - 588 of 617   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#588 From: "shi_butterfli" <shi_butterfli@...>
Date: Tue Apr 19, 2005 10:57 pm
Subject: palace tools
shi_butterfli
Offline Offline
Send Email Send Email
 
i need help... in my palace window the palace directory will not
connect to any palaces.... anyone got any ideas?

#587 From: Kelly Garcia <KellyJBG@...>
Date: Wed Apr 20, 2005 4:32 pm
Subject: Needed info please!
kellyjbg
Offline Offline
Send Email Send Email
 
Hello Palace Peoples!

Recently I had to restore my computer and wipe out all info, therefore I lost
alot of links, because I did not back up! go figure!
So what I am looking for, is any info on palace resources other than the
wonderful ones listed on Palace Planet and Palace Tools.
I would like a list of palaces that have cyborg scripts for download and palaces
with scripting help for palaces too, as I am a palace owner.
There was a brand new Palace, I remember visiting last month, that had excellent
info, with tubes to download and everything , but I cannot for the life of me,
remember the name or address of this wonderful palace full of lessons for Hungry
to learn palace owners like me!
  Can anyone help?? I have spent a few days doing searches on palace stuff on the
internet, but to no avail.
  I am also looking for the ManyK {many kisses} script which I lost and had
gotten at a palace full of cyborg downloads, but cannot remember the palace
name!  I went to three palaces with cyborg scripts but still I cannot find the
one who has the ManyK script.
Is there any one out there who can help PLEASE????
And THANK YOU!!!!!  next time I will try to save the info before I loose it
again!!!
  Thanks, again and  *smile* from Kellyjbg@...



Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998







__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

[Non-text portions of this message have been removed]

#586 From: Alan <alansmaillists@...>
Date: Wed Apr 6, 2005 7:14 am
Subject: Re: HELP on Scripting!!
alan_templeton
Offline Offline
Send Email Send Email
 
I helped Kelly resolve this so no need for others to answer.

Alan

On Apr 5, 2005, at 12:15 PM, Kelly Garcia wrote:

>
> Dear palace EXPERTS!
>  I am not the best with scripts and I am having some
> troubles with the following scripts. 1st: the problem
> with the controllable animation script is it will not
> work, ????  I tried it in a room and gave up and used
> the basic animation and that works fine, but why not
> this controllable??  2nd: I am having troubles
> figuring the x,x,y,y coordinates, I even asked someone
> and looked it up on different sites, I have many
> different windows and I want when you are over a
> window to have a message say where that window goes
> to, but the cooridinates will basically , but not
> perfectly work for message 1 but not the others
> I go to the top left of each window and use my pos
> command for my mouse than the bottom right of the
> window, & repeat, but when all is done the script
> makes the messages appear way off from the windows,
> except message 1 is almost right.  I am a bit
> frustrated, can anyone help??? Please???  & thank you?
> -------------------------------------------------------
> ;Alan's controllable animation script
> ; - Animate upon room entry or when command entered.
> ; - Animate once or continuously.
> ON ENTER
> {
>  animate GLOBAL
>  loop GLOBAL
>  manual GLOBAL
>  startcmd GLOBAL
>  stopcmd GLOBAL
> ;
> ;***Setup Parameters***
>  1 loop = 				 ;0 to loop once, 1 to loop continuously
>  1 manual = 				 ;0 to start on entry, 1 to make user
> start
>  "start animation" startcmd = ;command to start
> animation
>  "stop animation" stopcmd =  ;command to stop
> animation
> ;***End of Setup Parameters***
> ;
>  1 animate =
>  { "Say '" startcmd & "' to start the animation." &
> LOCALMSG
>  "Say '" stopcmd & "' to stop the animation." &
> LOCALMSG
>  } { 0 ME SETALARM } manual IFELSE
> }
>
> ON OUTCHAT
> {
>  animate GLOBAL
>  manual GLOBAL
>  startcmd GLOBAL
>  stopcmd GLOBAL
>
> ;start/stop animation
>  { 1 animate =
>  0 ME SETALARM
>  "" CHATSTR =
>  } CHATSTR startcmd ==
> 	  manual AND IF
> ;
>  { 0 animate =
>  "" CHATSTR =
>  } CHATSTR stopcmd ==
> 	  manual AND IF
> }
>
> ON ALARM
> {
>  animate GLOBAL
>  loop GLOBAL
> ;
> ;***Setup Parameters****
>  6 nbrpictures =  ;number of pictures in this spot
>  60 dtime = ;time each picture is displayed.
> 					 ;Each multiple of 60 is one second of display.
> ;***End of Setup Parameters***
> ;
>  { ME GETSPOTSTATE 1 + nbrpictures % ME
> SETSPOTSTATELOCAL
>  dtime ME SETALARM
>  } loop NOT
> 	  ME GETSPOTSTATE nbrpictures 1 - == NOT AND
> 	  loop OR
> 	  animation AND IF
> }
> -----------------------------------------------------
> ;Alan's mouseover script 1a
> ;This script displays a specified message at the mouse
> position when the mouse is over a specified area.
> ;Multiple message/locations can be specified.
> ;Place the following script in a spot:
> ON ENTER
> {
>  0 ME SETALARM
> }
> ON ALARM
> {
>  [
> ;
> ;****Set message data:  [ x_left x_right y_up y_down 0
> "message" ]
>  [ 82 112 10 48 0 "Message 1" ]
>  [ 260 293 20 54 0 "Message 2" ]
>  [ 420 458 26 59 0 "Message 3" ]
>  [ 80 120 106 143 0 "Message 4" ]
>  [ 260 305 101 149 0 "Message 5" ]
>  [ 430 465  114 152 0 "Message 6" ]
> ;***end of spot data***
>  ] moarray =
>  0 i =
>  { moarray i GET temparray =
>  MOUSEPOS DUP temparray 2 GET >= SWAP temparray 3 GET
> <= AND
>  SWAP DUP temparray 0 GET >= SWAP temparray 1 GET <=
> AND AND mouseover =
> 	 {
> 		 { temparray 0 GET temparray 1 GET + 2 / x =
> 		 temparray 2 GET temparray 3 GET + 2 / y =
> 		 "@" x ITOA & "," & y ITOA & temparray 5 GET &
> LOCALMSG
> 		 } mouseover IF
> 	 mouseover temparray 4 PUT
> 	 temparray moarray i PUT
> 	 } temparray 4 GET mouseover == NOT IF
>  i ++
>  } { i moarray LENGTH < } WHILE
>  30 ME SETALARM
> }
> ----------------------------------------------------
> Thanks for any help
> Kelly
>
> Huggs From KellyJean
> KellyJBG@...
> A Palace Chat Program Owner
>  "Bridge of Dreams & Nightmares" Palace
> Palace addy: bodan.fastpalaces.com:9998
> 65.254.42.215:9998
>
>
>
>
>
>
>
>
>
>
> __________________________________
> Do you Yahoo!?
> Take Yahoo! Mail with you! Get it on your mobile phone.
> http://mobile.yahoo.com/maildemo
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
----------
Alan Templeton
Sunnyvale, CA

#585 From: Kelly Garcia <KellyJBG@...>
Date: Tue Apr 5, 2005 7:15 pm
Subject: HELP on Scripting!!
kellyjbg
Offline Offline
Send Email Send Email
 
Dear palace EXPERTS!
  I am not the best with scripts and I am having some
troubles with the following scripts. 1st: the problem
with the controllable animation script is it will not
work, ????  I tried it in a room and gave up and used
the basic animation and that works fine, but why not
this controllable??  2nd: I am having troubles
figuring the x,x,y,y coordinates, I even asked someone
and looked it up on different sites, I have many
different windows and I want when you are over a
window to have a message say where that window goes
to, but the cooridinates will basically , but not
perfectly work for message 1 but not the others
I go to the top left of each window and use my pos
command for my mouse than the bottom right of the
window, & repeat, but when all is done the script
makes the messages appear way off from the windows,
except message 1 is almost right.  I am a bit
frustrated, can anyone help??? Please???  & thank you?
-------------------------------------------------------
;Alan's controllable animation script
; - Animate upon room entry or when command entered.
; - Animate once or continuously.
ON ENTER
{
	 animate GLOBAL
	 loop GLOBAL
	 manual GLOBAL
	 startcmd GLOBAL
	 stopcmd GLOBAL
;
;***Setup Parameters***
	 1 loop = 				 ;0 to loop once, 1 to loop continuously
	 1 manual = 				 ;0 to start on entry, 1 to make user
start
	 "start animation" startcmd = ;command to start
animation
	 "stop animation" stopcmd =  ;command to stop
animation
;***End of Setup Parameters***
;
	 1 animate =
	 { "Say '" startcmd & "' to start the animation." &
LOCALMSG
	 "Say '" stopcmd & "' to stop the animation." &
LOCALMSG
	 } { 0 ME SETALARM } manual IFELSE
}

ON OUTCHAT
{
	 animate GLOBAL
	 manual GLOBAL
	 startcmd GLOBAL
	 stopcmd GLOBAL

;start/stop animation
	 { 1 animate =
	 0 ME SETALARM
	 "" CHATSTR =
	 } CHATSTR startcmd ==
	   manual AND IF
;
	 { 0 animate =
	 "" CHATSTR =
	 } CHATSTR stopcmd ==
	   manual AND IF
}

ON ALARM
{
	 animate GLOBAL
	 loop GLOBAL
;
;***Setup Parameters****
	 6 nbrpictures =  ;number of pictures in this spot
	 60 dtime = ;time each picture is displayed.
						 ;Each multiple of 60 is one second of display.
;***End of Setup Parameters***
;
	 { ME GETSPOTSTATE 1 + nbrpictures % ME
SETSPOTSTATELOCAL
	 dtime ME SETALARM
	 } loop NOT
	   ME GETSPOTSTATE nbrpictures 1 - == NOT AND
	   loop OR
	   animation AND IF
}
-----------------------------------------------------
;Alan's mouseover script 1a
;This script displays a specified message at the mouse
position when the mouse is over a specified area.
;Multiple message/locations can be specified.
;Place the following script in a spot:
ON ENTER
{
	 0 ME SETALARM
}
ON ALARM
{
	 [
;
;****Set message data:  [ x_left x_right y_up y_down 0
"message" ]
	 [ 82 112 10 48 0 "Message 1" ]
	 [ 260 293 20 54 0 "Message 2" ]
	 [ 420 458 26 59 0 "Message 3" ]
	 [ 80 120 106 143 0 "Message 4" ]
	 [ 260 305 101 149 0 "Message 5" ]
	 [ 430 465  114 152 0 "Message 6" ]
;***end of spot data***
	 ] moarray =
	 0 i =
	 { moarray i GET temparray =
	 MOUSEPOS DUP temparray 2 GET >= SWAP temparray 3 GET
<= AND
	 SWAP DUP temparray 0 GET >= SWAP temparray 1 GET <=
AND AND mouseover =
		 {
			 { temparray 0 GET temparray 1 GET + 2 / x =
			 temparray 2 GET temparray 3 GET + 2 / y =
			 "@" x ITOA & "," & y ITOA & temparray 5 GET &
LOCALMSG
			 } mouseover IF
		 mouseover temparray 4 PUT
		 temparray moarray i PUT
		 } temparray 4 GET mouseover == NOT IF
	 i ++
	 } { i moarray LENGTH < } WHILE
	 30 ME SETALARM
}
----------------------------------------------------
Thanks for any help
Kelly

Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998










__________________________________
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo

#584 From: Kelly Garcia <KellyJBG@...>
Date: Thu Mar 3, 2005 3:07 am
Subject: Any St Patty's Day Tours OUT There>??
kellyjbg
Offline Offline
Send Email Send Email
 
Hello Again To All You Lovely Palace People Out
There!!!
I Hope All Is Good With You In And Out of the Land of
Palace and the Net!

A Very Big Kiss and Hug goes out to You, Mad Dog from
Camara's Paradise, and Family Palaces Hub!!  Nice to
Hear from You!! Muahh!!!!

And A Larger Than Life Hug and Lots of Kisses go out
to You all over at Go Members Group!!!  Thank you for
your lovely Book Gift from the Valentines Tour!! I am
an Avid Reader so that is a perfect gift!!! And
Special Hugss to Nita and John the Judges and to you
Kassie Thayer!!! MUAHHHHH!!!

Also Kisses and Hugggs to You Irish Eyes & Zwack!!!!
Over at Celtic Blessings, at
blessings.mutant.net:9995, I have book=marked ya and
will be touring the lovely lands of Ireland and
Scotland for an inspired St. Patty's Day Thrill!!!
Thank you so very much for your palace with a Green
Theme!!!

Again for any and all who want someplace to be, to
fell a wee bit of the Irish in them this coming St.
Patty's Day, please visit the above mentioned palace:
Celtic Blessings , and you are always welcome to my
palace:  as I meself have a lovely Irish St.Patty Day
Tour, at Bridge of Dreams & Nightmares Palace (addy:
bodan.fastpalaces.com:9998 ) which is all up
and ready to be joined with others, if ye so please!

And I would LOVE to see more Tours for the Little bit
of Irish in us all!!!  Go Green Beer!!!!

Does Anyone Else Have Info on Any Irish, St. Patty's
Day Tours?  Or Pub Hop?  I Remember we had a Pub Hop
last Year with the Castle and Urradio!  I Know there
are some  Easter Tours out there, but how about
St.Patty's Day???

Please Please Please Let me know if ye hear Anything
ok? and sorry if this is a repeat, technical
difficulties, lol

=====
Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998











__________________________________
Celebrate Yahoo!'s 10th Birthday!
Yahoo! Netrospective: 100 Moments of the Web
http://birthday.yahoo.com/netrospective/

#583 From: Kelly Garcia <KellyJBG@...>
Date: Thu Mar 3, 2005 2:52 am
Subject: Irish St. Patty's Day Tours
kellyjbg
Offline Offline
Send Email Send Email
 
Hello Again To All You Lovely Palace People Out
There!!!
I Hope All Is Good With You In And Out of the Land of
Palace and the Net!

A Very Big Kiss and Hug goes out to You, Mad Dog from
Camara's Paradise, and Family Palaces Hub!!  Nice to
Hear from You!! Muahh!!!!

And A Larger Than Life Hug and Lots of Kisses go out
to You all over at Go Members Group!!!  Thank you for
your lovely Book Gift from the Valentines Tour!! I am
an Avid Reader so that is a perfect gift!!! And
Special Hugss to Nita and John the Judges and to you
Kassie Thayer!!! MUAHHHHH!!!

Also Kisses and Hugggs to You Irish Eyes & Zwack!!!!
Over at Celtic Blessings, at
blessings.mutant.net:9995, I have book-marked ya and
will be touring the lovely lands of Ireland and
Scotland for an inspired St. Patty's Day Thrill!!!
Thank you so very much for your palace with a Green
Theme!!!

Again for any and all who want someplace to be, to
fell a wee bit of the Irish in them this coming St.
Patty's Day, please visit the above mentioned palace:
Celtic Blessings , and you are always welcome to my
palace:  as I meself have a lovely Irish St.Patty Day
Tour, at Bridge of Dreams & Nightmares  Palace (addy:
bodan.fastpalaces.com:9998 ) which is all up
and ready to be joined with others, if ye so please!

And I would LOVE to see more Tours for the Little bit
of Irish in us all!!!  Go Green Beer!!!!

Does Anyone Else Have Info on Any Irish, St. Patty's
Day Tours?  Or Pub Hop?  I Remember we had a Pub Hop
last Year with the Castle and Urradio!  I Know there
are some  Easter Tours out there, but how about
St.Patty's Day???

Please Please Let me know, Thanks!!! MUAH!!

=====
Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998











__________________________________
Celebrate Yahoo!'s 10th Birthday!
Yahoo! Netrospective: 100 Moments of the Web
http://birthday.yahoo.com/netrospective/

#582 From: Kelly Garcia <KellyJBG@...>
Date: Wed Mar 2, 2005 2:24 am
Subject: Irish St. Patty Tour?????
kellyjbg
Offline Offline
Send Email Send Email
 
Hello Palace People!
Does Anyone Have Info on Any Irish, St. Patty's Day
Tours?  Or Pub Hop?  I Remember we had a Pub Hop last
Year with the Castle and Urradio!  I Know there are
some  Easter Tours out there, but how about St.
Patty's Day??? Go Green BEER!!! LOL

  I myself have a lovely Irish St.Patty Day Tour, at My
palace Bridge of Dreams & Nightmares Palace (addy:
bodan.fastpalaces.com:9998 ) which is all up and ready
to be joined with others! And I would LOVE to see more
Tours for the Little bit of Irish in us all!!!

Please Let me know if ya hear of anything out there in
Palace Land!!! and Thank you!!

Love to All You Palace People who Make Palace a fun
place to be!!! MUAAAAAAAAAAAAHHHHHH!!!

=====
Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998










__________________________________
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail

#581 From: "fadingxauthority" <zythlon@...>
Date: Fri Feb 18, 2005 8:43 pm
Subject: Grand Opening
fadingxautho...
Offline Offline
Send Email Send Email
 
Hey everyone  =)

I'd like to announce the grand opening of my palace, dChat. It is a
family friendly palace for all ages, and it has tons of avatars,
friendly staff, and a good time for everyone. You can visit the
palace at:

palace://dchat.maniaserv.com:9999

or visit the website at:

http://www.thedchat.com

The grand opening party will start friday night and go all day
saturday, Feb. 18 & 19. I also need more staff so if anyone is
interested, the application can be found on the website.

Thank you all,
Dustin

#580 From: Moon§hine <moonshine@...>
Date: Fri Feb 25, 2005 1:40 am
Subject: Update for California Dreams
moonshine_cd
Offline Offline
Send Email Send Email
 
California Dreams has a new home and CRG has a new tech-giggle-Me!
californiadreams.crghosting.com
-so please come and bookmark us and update our link if ya have us in links
too-huggs
®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»
"Moon§hine"!! «CRG»
California Dreams,palace:/californiadreams.crghosting.com:9998
ICQ 3186778
Palace Dream Weavers Web Ring http://p.webring.com/hub?ring=palacedreamweave
Sounds of Beauty and Romance Web Ring
http://h.webring.com/hub?ring=soundsofpalace
Adult Palaces Web Ring  http://j.webring.com/hub?ring=adultpalacewebri
Palace Ring Web Ring  http://o.webring.com/hub?ring=palacering
º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®º»«º®

#579 From: Helen Varley Jamieson <helen@...>
Date: Sun Nov 21, 2004 8:22 am
Subject: Re: Palace client key
helen_varley
Offline Offline
Send Email Send Email
 
try getting a new registration code from one of the sites like
http://www.palace.webdog.com/
h : )

>First i have to say my english is not very good, but will try to
>explain what i need to know.  I had a problem with my hardisk and i
>had to re install the palace client. Now hedont want me to enter the
>key member...dont know how to register this software and i know i
>have to do it.  Everytime i log in my palace client he sees me as a
>guest and he does not aloow me to write the nick i want...he
>says ''illegal name'' is someone can help me please.
>
>
>
>
>
>
>
>
>
>
>Yahoo! Groups Links
>
>
>
>


--
____________________________________________________________

helen varley jamieson: creative catalyst
helen@...
http://www.creative-catalyst.com
http://www.avatarbodycollision.org
http://www.writerfind.com/hjamieson.htm
____________________________________________________________

#578 From: "fwmaelle" <fwmaelle@...>
Date: Sat Nov 20, 2004 4:09 pm
Subject: Palace client key
fwmaelle
Offline Offline
Send Email Send Email
 
First i have to say my english is not very good, but will try to
explain what i need to know.  I had a problem with my hardisk and i
had to re install the palace client. Now hedont want me to enter the
key member...dont know how to register this software and i know i
have to do it.  Everytime i log in my palace client he sees me as a
guest and he does not aloow me to write the nick i want...he
says ''illegal name'' is someone can help me please.

#577 From: "Katie Moncelsi" <illyria@...>
Date: Mon Nov 15, 2004 7:05 pm
Subject: LAST CALL : 24HOP 9 Guides AND Guide Leader Submissions
feralslayera...
Offline Offline
Send Email Send Email
 
Submission to be a guide will end for guides Tuesday at 9PM EST. so
come
join we still got places for ya :)

you can submit to be a guide at:
http://www.palacehop.org/guidsub.php

Katie

#576 From: Alan <alansmaillists@...>
Date: Fri Oct 22, 2004 1:39 am
Subject: Re: Script question
alan_templeton
Offline Offline
Send Email Send Email
 
It assumes you have a variable named "timezone" defined elsewhere in your
borg.  If it is defined elsewhere use the following values for it:

;time zones - Eastern: 18000 Central: 21600 Mtn: 25200 Pacific: 28800

If it is not defined elsewhere, add the following line just before your
script:

12345 timezone =

Where 12345 one of the above numbers for timezone.


As an aside, this will not automatically correct for daylight savings.



on 10/21/04 6:01 PM, Kelly Garcia at KellyJBG@... wrote:

>
> hello, I have a script question
>
> I have this script
>
>
> ; say the time to the other chatters if they ask
>
> { timezone global
>
> { DATETIME 86400 % t =
>
> t 3600 / timezone + h =
>
> } {
>
> DATETIME 2147483647 + 86400 % 11647 + 86400 % t =
>
> t 3600 / h =
>
> } DATETIME 0 >= IFELSE
>
> { 24 h -= } h 24 > IF
>
> { 24 h += } h 0 < IF
>
> h ITOA ":" &
>
> t 3600 % 60 / m =
>
> { "0" & } m 10 < IF m ITOA &
>
> ":" &
>
> t 60 % s =
>
> { "0" & } s 10 < IF s ITOA &
>
> "it's " SWAP + " here" + SAY "" CHATSTR = } lowchat "time1" == IF
>
>
>
> but it is not my time. I am on Pacific standard time and this script is 7
> hours ahead of me or 17 hours behind me? lol  Anyways where/how do I change it
> so it reads my time in the world??
>
> Thank you for any and all help!!!  As it is always very much  apreciated!!!!
>
> Thank you again!!
>
>
>
> Huggs From KellyJean
> KellyJBG@...
> A Palace Chat Program Owner
> "Bridge of Dreams & Nightmares" Palace
> Palace addy: bodan.fastpalaces.com:9998
> 65.254.42.215:9998
>
>
>
>
>
>
>
>
> ---------------------------------
> Do you Yahoo!?
> Yahoo! Mail – CNET Editors' Choice 2004.  Tell them what you think. a
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>


--
Palace scripts:  http://www.chatserve.com/alansscriptlibrary.htm
Palace Macintosh support:  http://www.accesscom.com/~alant/palace/index.html

#575 From: Kelly Garcia <KellyJBG@...>
Date: Fri Oct 22, 2004 1:01 am
Subject: Script question
kellyjbg
Offline Offline
Send Email Send Email
 
hello, I have a script question

I have this script


; say the time to the other chatters if they ask

{ timezone global

{ DATETIME 86400 % t =

t 3600 / timezone + h =

} {

DATETIME 2147483647 + 86400 % 11647 + 86400 % t =

t 3600 / h =

} DATETIME 0 >= IFELSE

{ 24 h -= } h 24 > IF

{ 24 h += } h 0 < IF

h ITOA ":" &

t 3600 % 60 / m =

{ "0" & } m 10 < IF m ITOA &

":" &

t 60 % s =

{ "0" & } s 10 < IF s ITOA &

"it's " SWAP + " here" + SAY "" CHATSTR = } lowchat "time1" == IF



but it is not my time. I am on Pacific standard time and this script is 7 hours
ahead of me or 17 hours behind me? lol  Anyways where/how do I change it so it
reads my time in the world??

Thank you for any and all help!!!  As it is always very much  apreciated!!!!

Thank you again!!



Huggs From KellyJean
KellyJBG@...
A Palace Chat Program Owner
  "Bridge of Dreams & Nightmares" Palace
Palace addy: bodan.fastpalaces.com:9998
65.254.42.215:9998








---------------------------------
Do you Yahoo!?
Yahoo! Mail – CNET Editors' Choice 2004.  Tell them what you think. a

[Non-text portions of this message have been removed]

#574 From: Helen Varley Jamieson <helen@...>
Date: Sun Feb 1, 2004 10:01 am
Subject: Re: No Sound IN Palace
helen_varley
Offline Offline
Send Email Send Email
 
have you installed the text2speech plug-in?
http://palspeech.web1000.com/

>I have installed palace client 3.5
>but can't hear sound at all
>even the palace sound files aren't coming thro
>if I rename one of those files example: (amen.wav)
>then wnamp will open it and play it fine but to hear it in the palace
>client .. it doesn't work
>I even installed a codex for hearing mp3's after I ran out of ideas
>as to why I can't hear sound files in the palace.. anyone got any
>ideas what's wrong... HELP !!!!!!!
>running OS windows Xp
>
>
>We do not allow unsolicited, bulk, commercial email and actions will
>be taken against those posting anything that is not Palace
>related.ial email and actions will be taken against those posting
>anything that is not Palace related.
>
>Yahoo! Groups Links
>
>To visit your group on the web, go to:
>  http://groups.yahoo.com/group/palace-client/
>
>To unsubscribe from this group, send an email to:
>  palace-client-unsubscribe@yahoogroups.com
>
>Your use of Yahoo! Groups is subject to:
>  http://docs.yahoo.com/info/terms/


--
____________________________________________________________

helen varley jamieson: creative catalyst
helen@...
http://www.creative-catalyst.com
http://www.avatarbodycollision.org
http://www.writerfind.com/hjamieson.htm
____________________________________________________________

#573 From: Nicholas Todor <whammypower788@...>
Date: Sat Jan 31, 2004 10:27 pm
Subject: Re: No Sound IN Palace
whammypower788
Offline Offline
Send Email Send Email
 
Did you try hitting Ctrl+S?

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/

#572 From: "enchtris" <enchtris1@...>
Date: Sat Jan 31, 2004 5:54 am
Subject: No Sound IN Palace
enchtris
Offline Offline
Send Email Send Email
 
I have installed palace client 3.5
but can't hear sound at all
even the palace sound files aren't coming thro
if I rename one of those files example: (amen.wav)
then wnamp will open it and play it fine but to hear it in the palace
client .. it doesn't work
I even installed a codex for hearing mp3's after I ran out of ideas
as to why I can't hear sound files in the palace.. anyone got any
ideas what's wrong... HELP !!!!!!!
running OS windows Xp

#571 From: "thedarknitez" <thedarknitez@...>
Date: Mon Jan 19, 2004 11:44 am
Subject: Palace Client showing 99% CPU usage in Taskmanager on XP
thedarknitez
Offline Offline
Send Email Send Email
 
Hello everyone, I have an odd problem which seems to be related to any
type of Palace client that I run on my machine upon connecting to a
palace. My machine specs are:
Pentium III, 2 Gigahertz, 512 RAM, 130 GIG HDD, Windows XP Home
Edition, DSL Connection

While Palace is open but not connected my CPU usage from it's process
is less than 5%, but the moment that I connect it goes up to 99% and
my total processes max out at 100% CPU. This doesn't seem to
significantly affect my machine's performance unless I have two
clients open at the same time *one a diff GUI and uses separate palace
reg but otherwise not changed*, then I do see a slight delay in some
programs. I have changed the compatibility to 98 with no difference in
the CPU usage.

Any help would be appreciated as I am also opening a server to the
public on my machine this coming weekend and I am concerned that I may
not be able to be on my own palace when I have sufficient connections
causing the server to up it's own CPU usage.

Ummm... also how do I change my name appearance in the posts here?

BloodStar

#570 From: Cyberflow <cyberflow@...>
Date: Fri Jan 16, 2004 11:46 pm
Subject: Question about programming a plug-in
cyberflow_187
Offline Offline
Send Email Send Email
 
Hi,

I was wondering if it's possible to launch automatically the Save log when we start the palace client with a plug-in ? ....

Thanx ...

________________________________
?Cyberflow ©¿
Palace.Giganetweb.Com
Administrateur
Web: http://www.palace.giganetweb.com/
Email: cyberflow@...


#569 From: "Doug Mehus" <doug@...>
Date: Sun Dec 28, 2003 3:52 am
Subject: Re: Handlers
dougmehus
Offline Offline
Send Email Send Email
 
Thanks for the information, Specht. It is certainly appreciated. As for the
undocumented, incomplete event handlers, not a surprise at all. CC left many
things incomplete; the no plugin support for Windows based servers and the
"fill" and "shadow" spot flags used in doors, to name just a couple. :)

Cheers,
Doug

#568 From: sek@...
Date: Sat Dec 27, 2003 8:24 pm
Subject: Handlers
peterspechtat
Offline Offline
Send Email Send Email
 
hi group,

There are some other undocumented handlers_
ON SIGNOFF
ON PROPCHANGE
ON STARTUP
ON CUSTOM
ON HIDE
ON SHOW
Unfortunately they seem to be useless for Iptscrae
programmers. Only the
ON CHAT  is useful, and I think it is identical
to the normal ON INCHAT handler. Or is there a
difference?

regards
~§pecht~

#567 From: Helen Jamieson <helen@...>
Date: Tue Nov 18, 2003 9:40 pm
Subject: Re: Re: using the palace with Mac OSX
helen_varley
Offline Offline
Send Email Send Email
 
sorry, i deleted the original message ... perhaps the sender will
remove themselves, or kindly oblige by sending us another offensive
email so that we can identify them ; )

On 19/11/2003, at 5:32 AM, webmaster@... wrote:
>
> Apparently the message referred to was deleted from the archives by
> Bond, or it was sent privately.  It does not appear in the archives.
>
> However, even if it was sent privately, if Helen can provide the addy
> of the sender, they should be removed from the list.  My 2 cents
> worth.
> --
>
>    - - - - - - - - - - - - - - - - - -
>
>    City Slicker
>       a.k.a.
>    Cliff Smith
>
> ------------------------ Yahoo! Groups Sponsor
> ---------------------~-->
> Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
> Printer at MyInks.com. Free s/h on orders $50 or more to the US &
> Canada.
> http://www.c1tracking.com/l.asp?cid=5511
> http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/JHFolB/TM
> ---------------------------------------------------------------------
> ~->
>
> To unsubscribe from this group, send an email to:
>
> palace-client-unsubscribe@yahoogroups.com
>
> We do not allow unsolicited, bulk, commercial email and actions will
> be taken against those posting anything that is not Palace related.
>
> Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
>
>
________________________________________________________
helen varley jamieson
helen@...
www.creative-catalyst.com
www.avatarbodycollision.org
www.writerfind.com/hvjamieson.htm

#566 From: webmaster@...
Date: Tue Nov 18, 2003 4:32 pm
Subject: Re: Re: using the palace with Mac OSX
palacecastle
Offline Offline
Send Email Send Email
 
At 10:02 AM -0600 11/18/03, bobfinch wrote:
>On 19 Nov 2003 at 0:12, Helen Jamieson wrote:
>
>>  charming! i suggest you go back to bed & try getting out the other
>>  side ...
>>
>  > On 18/11/2003, at 10:57 PM, palace client wrote:

Apparently the message referred to was deleted from the archives by
Bond, or it was sent privately.  It does not appear in the archives.

However, even if it was sent privately, if Helen can provide the addy
of the sender, they should be removed from the list.  My 2 cents
worth.
--

    - - - - - - - - - - - - - - - - - -

    City Slicker
       a.k.a.
    Cliff Smith

#565 From: webmaster@...
Date: Tue Nov 18, 2003 4:26 pm
Subject: Re: Re: using the palace with Mac OSX
palacecastle
Offline Offline
Send Email Send Email
 
At 10:02 AM -0600 11/18/03, bobfinch wrote:
>whoever wrote that one reply should be moderated out of this
>group. If you can't be civil, then you aren't needed anywhere in
>Palace.  :o)   (that's just my opinion, of course)

I think that opinion is shared by everybody.
--

    - - - - - - - - - - - - - - - - - -

    City Slicker
       a.k.a.
    Cliff Smith

#564 From: "bobfinch" <bob@...>
Date: Tue Nov 18, 2003 4:02 pm
Subject: Re: Re: using the palace with Mac OSX
bobf6802
Offline Offline
Send Email Send Email
 
whoever wrote that one reply should be moderated out of this
group. If you can't be civil, then you aren't needed anywhere in
Palace.  :o)   (that's just my opinion, of course)

On 19 Nov 2003 at 0:12, Helen Jamieson wrote:

> charming! i suggest you go back to bed & try getting out the other
> side ...
>
> On 18/11/2003, at 10:57 PM, palace client wrote:
>
> > Why ask for fucking advice when you are not going to use it. Stupid
> > Bitch
> >
> > ----- Original Message -----
> > From: Helen Jamieson <helen@...>
> > To: palace-client <palace-client@yahoogroups.com>
> > Sent: Tuesday, November 18, 2003
> > Subject: [palace-client] Re: using the palace with Mac OSX
> >>
> >> thanks for the replies ... i think i will just restart in OS 9.2
> >> for palace stuff - it still works fine in that! h : )
> >
> >
> ________________________________________________________
> helen varley jamieson
> helen@...
> www.creative-catalyst.com
> www.avatarbodycollision.org
> www.writerfind.com/hvjamieson.htm
>

#563 From: Helen Jamieson <helen@...>
Date: Tue Nov 18, 2003 11:12 am
Subject: Re: Re: using the palace with Mac OSX
helen_varley
Offline Offline
Send Email Send Email
 
charming! i suggest you go back to bed & try getting out the other side
...

On 18/11/2003, at 10:57 PM, palace client wrote:

> Why ask for fucking advice when you are not going to use it. Stupid
> Bitch
>
> ----- Original Message -----
> From: Helen Jamieson <helen@...>
> To: palace-client <palace-client@yahoogroups.com>
> Sent: Tuesday, November 18, 2003
> Subject: [palace-client] Re: using the palace with Mac OSX
>>
>> thanks for the replies ... i think i will just restart in OS 9.2 for
>> palace stuff - it still works fine in that!
>> h : )
>
>
________________________________________________________
helen varley jamieson
helen@...
www.creative-catalyst.com
www.avatarbodycollision.org
www.writerfind.com/hvjamieson.htm

#562 From: Helen Jamieson <helen@...>
Date: Tue Nov 18, 2003 5:08 am
Subject: Re: using the palace with Mac OSX
helen_varley
Offline Offline
Send Email Send Email
 
thanks for the replies ... i think i will just restart in OS 9.2 for
palace stuff - it still works fine in that!
h : )

On 17/11/2003, at 10:47 PM, webmaster@... wrote:

> At 4:35 AM +0000 11/17/03, Helen Varley Jamieson wrote:
>> is anyone else out there using the palace on Mac OSX?
>>
>> i've just upgrade to panther (from 9.2) & the palace seems to work
>> pretty well in
>> classic mode, apart from the speech. it's kind of broken up.
>>
>> has anyone else encountered this problem & got any suggestions for
>> improving it? it's
>> strange because the same range of voices is used by the system for
>> alerts etc, & it
>> sounds fine in that.
>
> I've been using OSX for a good while now.  I found, when there's
> certain background activity, voices break up or don't say all the
> words sometimes.  I, too, have tried every tweak in the book to try
> to fix it, but I fear it is an issue that OSX just doesn't "focus" on
> Classic applications that are running, even in the foreground.  OSX
> native programs, even running in the background, seem to get
> processor priority.
> --
>
>    - - - - - - - - - - - - - - - - - -
>
>    City Slicker
>       a.k.a.
>    Cliff Smith
>
> ------------------------ Yahoo! Groups Sponsor
> ---------------------~-->
> Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
> Printer at MyInks.com. Free s/h on orders $50 or more to the US &
> Canada.
> http://www.c1tracking.com/l.asp?cid=5511
> http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/JHFolB/TM
> ---------------------------------------------------------------------
> ~->
>
> To unsubscribe from this group, send an email to:
>
> palace-client-unsubscribe@yahoogroups.com
>
> We do not allow unsolicited, bulk, commercial email and actions will
> be taken against those posting anything that is not Palace related.
>
> Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
>
>
________________________________________________________
helen varley jamieson
helen@...
www.creative-catalyst.com
www.avatarbodycollision.org
www.writerfind.com/hvjamieson.htm

#561 From: webmaster@...
Date: Mon Nov 17, 2003 9:47 am
Subject: Re: using the palace with Mac OSX
palacecastle
Offline Offline
Send Email Send Email
 
At 4:35 AM +0000 11/17/03, Helen Varley Jamieson wrote:
>is anyone else out there using the palace on Mac OSX?
>
>i've just upgrade to panther (from 9.2) & the palace seems to work
>pretty well in
>classic mode, apart from the speech. it's kind of broken up.
>
>has anyone else encountered this problem & got any suggestions for
>improving it? it's
>strange because the same range of voices is used by the system for
>alerts etc, & it
>sounds fine in that.

I've been using OSX for a good while now.  I found, when there's
certain background activity, voices break up or don't say all the
words sometimes.  I, too, have tried every tweak in the book to try
to fix it, but I fear it is an issue that OSX just doesn't "focus" on
Classic applications that are running, even in the foreground.  OSX
native programs, even running in the background, seem to get
processor priority.
--

    - - - - - - - - - - - - - - - - - -

    City Slicker
       a.k.a.
    Cliff Smith

#560 From: Alan <alansmaillists@...>
Date: Mon Nov 17, 2003 4:55 am
Subject: Re: using the palace with Mac OSX
alan_templeton
Offline Offline
Send Email Send Email
 
I've been using Palace under OS 10 and now 10.2 with no problems.  I don't
usually have speech turned on but it sounds fine to me.
--
Palace scripts:  http://www.chatserve.com/alansscriptlibrary.htm
Palace Macintosh support:  http://www.accesscom.com/~alant/palace/index.html

> From: "Helen Varley Jamieson" <helen@...>
> Reply-To: palace-client@yahoogroups.com
> Date: Mon, 17 Nov 2003 04:35:15 -0000
> To: palace-client@yahoogroups.com
> Subject: [palace-client] using the palace with Mac OSX
>
> is anyone else out there using the palace on Mac OSX?
>
> i've just upgrade to panther (from 9.2) & the palace seems to work pretty well
> in
> classic mode, apart from the speech. it's kind of broken up.
>
> has anyone else encountered this problem & got any suggestions for improving
> it? it's
> strange because the same range of voices is used by the system for alerts etc,
> & it
> sounds fine in that.
>
> thanks,
>
> helen : )
>
>
>
> To unsubscribe from this group, send an email to:
>
> palace-client-unsubscribe@yahoogroups.com
>
> We do not allow unsolicited, bulk, commercial email and actions will be taken
> against those posting anything that is not Palace related.
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>

#559 From: "Helen Varley Jamieson" <helen@...>
Date: Mon Nov 17, 2003 4:35 am
Subject: using the palace with Mac OSX
helen_varley
Offline Offline
Send Email Send Email
 
is anyone else out there using the palace on Mac OSX?

i've just upgrade to panther (from 9.2) & the palace seems to work pretty well
in
classic mode, apart from the speech. it's kind of broken up.

has anyone else encountered this problem & got any suggestions for improving it?
it's
strange because the same range of voices is used by the system for alerts etc, &
it
sounds fine in that.

thanks,

helen : )

Messages 559 - 588 of 617   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help