Go Back   The Palace Avatar Chat Community Forums. > Palace Builders Palace Users > User Questions

User Questions
The spot for asking your Palace Client and Palace Server Questions.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-03-2007, 08:10 PM
Cpstar's Avatar
Palace User
 
Join Date: Jan 2003
Location: College Point, NY
Posts: 6
Rep Power: 0
Cpstar is on a distinguished road
Another thing that I found that will time you out is if your cookies are loaded to the brim ,,, you might wanna try cleaning them out every so often
__________________
Palace://bound2please.elitepalaces.com:9998


Some people are only alive because it is agianst the law to kill them..................
Reply With Quote
  #2 (permalink)  
Old 04-29-2007, 09:36 PM
LadyDi's Avatar
Palace User
 
Join Date: Mar 2004
Location: Minneapolis, MN
Posts: 17
Rep Power: 0
LadyDi is on a distinguished road
Hi there, sorry I've taken so long to respond to your suggestions. I have been troubleshooting this for so long that sometimes I just get tired of trying to figure it out and give up for awhile. I tried the ping test you described above and I still got terminated due to inactivity. So then I put the borg commands you put in your post in my ON ENTER section. I didn't have an ON ALARM section, so I added a section under ON ENTER with just that ON ALARM command, is that right? If it is, that did not work for me either, I still get terminated.
I did get a command from Uni that keeps me alive but I say talk above my head every 3 minutes. This is what he made for me

;; talk script (ON OUTCHAT part)

{

{" " SAY} 10800 ALARMEXEC
{" " SAY} 21600 ALARMEXEC
{" " SAY} 32400 ALARMEXEC
{" " SAY} 43200 ALARMEXEC
{" " SAY} 54000 ALARMEXEC
{" " SAY} 64800 ALARMEXEC
{" " SAY} 75600 ALARMEXEC
{" " SAY} 86400 ALARMEXEC
{" " SAY} 97200 ALARMEXEC
{" " SAY} 108000 ALARMEXEC
{" " SAY} 118800 ALARMEXEC
{" " SAY} 129600 ALARMEXEC
{" " SAY} 140400 ALARMEXEC
{" " SAY} 151200 ALARMEXEC
{" " SAY} 162000 ALARMEXEC
{" " SAY} 172800 ALARMEXEC
{" " SAY} 183600 ALARMEXEC
{" " SAY} 194400 ALARMEXEC
{" " SAY} 205200 ALARMEXEC
{" " SAY} 216000 ALARMEXEC
{" " SAY} 226800 ALARMEXEC
{" " SAY} 237600 ALARMEXEC
{" " SAY} 248400 ALARMEXEC
{" " SAY} 259200 ALARMEXEC
{" " SAY} 270000 ALARMEXEC
{" " SAY} 280800 ALARMEXEC
{" " SAY} 291600 ALARMEXEC
{" " SAY} 302400 ALARMEXEC
{" " SAY} 313200 ALARMEXEC
{" " SAY} 324000 ALARMEXEC
{" " SAY} 442800 ALARMEXEC
{" " SAY} 453600 ALARMEXEC
{" " SAY} 464400 ALARMEXEC
{" " SAY} 475200 ALARMEXEC
{" " SAY} 486000 ALARMEXEC
{" " SAY} 496800 ALARMEXEC
{" " SAY} 507600 ALARMEXEC
{" " SAY} 518400 ALARMEXEC
{" " SAY} 529200 ALARMEXEC
{" " SAY} 540000 ALARMEXEC

}

"talk" chatstr == IF

So this works but it is annoying for everyone to see me say "talk" every 3 minutes. Any other ideas please?
Reply With Quote
  #3 (permalink)  
Old 04-29-2007, 09:38 PM
LadyDi's Avatar
Palace User
 
Join Date: Mar 2004
Location: Minneapolis, MN
Posts: 17
Rep Power: 0
LadyDi is on a distinguished road
Hi Cpstar
I clean out my cookies daily, so that's not it. Thank you for the tip though.
Reply With Quote
  #4 (permalink)  
Old 05-01-2007, 02:11 PM
LJ©'s Avatar
Palace User
 
Join Date: Mar 2007
Location: Brisbane, Australia
Posts: 12
Rep Power: 0
LJ© is on a distinguished road
Potential work-around to the problem?

Well, If the ping test had no effect, it seems that it is a Palace Server - Palace Client issue. Most likely the Client.

Nothing springs to mind as to the cause, so heres some ideas to work around it... and not get too much hassle. To avoid every1 in the room wondering about your " " SAY problem you could try and replace " " SAY with " " WHOME PRIVATEMSG That way you are just speaking to yourself.

This SCRIPT I have written below SHOULD solve your problem, without being too apparant and annoying to you and others. This cyborg script below will strip your props every 3 minutes piece by piece until you are a naked T-ball, then instantly wack whatever avatar you where wearing back on. This activity should keep your Palace Client - Palace Server connection alive.
I have used this principle before to avoid connection dropouts... it really should work for you.
Most people won't notice it... unless they are lagged to heck. You might not notice it working either, so I have added a line in RED that can be removed once you know this works and resolves your connection issues. I've included the option to turn it on/off with "fix on" "fix off" - default is on everytime you SIGN ON to a palace.

Put this line somewhere in your ON SIGNON section of cyborg.ipt. *N.B the purple text needs to go at start of ON SIGNON with any other GLOBALs. Blue text just goes in where you can fit it.
scripton GLOBAL
1 scripton =
10800 ME SETALARM

Then create an ON ALARM section if you do not have one....
ON ALARM {
scripton GLOBAL
{ ;this section only runs if the script is turned on
10800 ME SETALARM
"" Diavatar =
{ " " topprop itoa + theprop =
theprop Diavatar + Diavatar =
WHOME DOFFPROP
} { TOPPROP } WHILE
PAUSE 10
;10 second pause to see that avatar did fall off
"[" Diavatar + "] SETPROPS" + STRTOATOM EXEC }scripton 1 == IF
}
Then this bit goes in your ON OUTCHAT section....*Note.. the purple text needs to go at the start of OUTCHAT..the blue text wherever you can fit it..
scripton GLOBAL
{
0 scripton =
"Stop Termination Error SCRIPT is OFF" STATUSMSG
"" GREPSUB CHATSTR =
} CHATSTR LOWERCASE "^fix off$" GREPSTR IF

{
1 scripton =
10800 ME SETALARM
"Stop Termination Error SCRIPT is ON" STATUSMSG
"" GREPSUB CHATSTR =
} CHATSTR LOWERCASE "^fix on$" GREPSTR IF


Hope this is of some help... Wish I could offer an idea as to the real cause of the problem, but this should at least provide you with a bearable solution.
Reply With Quote
  #5 (permalink)  
Old 05-04-2007, 02:02 PM
LadyDi's Avatar
Palace User
 
Join Date: Mar 2004
Location: Minneapolis, MN
Posts: 17
Rep Power: 0
LadyDi is on a distinguished road
Hi member from Australia (sorry I don't have the symbols on my keyboard for your name)
WOW, that script you wrote me is amazing! I can barely see the av change every 3 minutes, it's that FAST. And, best of all, it works! It keeps me there now without being annoying with the balloon above my head every 3 minutes setting off the automatic borgs with their "wb Lady Di". I only had time to check it out briefly, BUT I was able to sit quietly for a whole 7 minutes and I wasn't terminated. I will test it more this weekend, but I am pretty positive it is working because I could never stay more than 3-4 minutes before.
Thank you so much for the script. It's a VERY bearable solution until if and when I can ever figure out what causes the terminated due to inactivity in the first place.
Thanks very, very, very much.
Di
Reply With Quote
  #6 (permalink)  
Old 05-05-2007, 03:58 PM
LadyDi's Avatar
Palace User
 
Join Date: Mar 2004
Location: Minneapolis, MN
Posts: 17
Rep Power: 0
LadyDi is on a distinguished road
Good Morning
I can officially say this script works GREAT. I sat at my Palace gate for 30 minutes without saying a word and did not get terminated due to inactivity. And I could barely see a blip when the script worked, it's like the blink of an eye. Thanks again for helping me.
Reply With Quote
  #7 (permalink)  
Old 05-06-2007, 07:33 AM
LJ©'s Avatar
Palace User
 
Join Date: Mar 2007
Location: Brisbane, Australia
Posts: 12
Rep Power: 0
LJ© is on a distinguished road
G'day Di, I'm really glad it worked. Repeatedly being terminated must have been a very frustrating problem. BTW - You may remember me as Lightning Jack if u r Lady Di who used to hang at Wildcheree's. The script is a modified version of the "BRB" script I posted. I haven't Palace'd in years, but I still like to help with scripts n stuff to keep my grey matter chugging along. - regards, Chris/LJ©

Final thoughts - you could have also tried a virgin palace.prp and palace.mac file - not likely to help tho' unless the server was getting 'invalid prop' messages. Then I would have really run out of ideas except it might be a prob' with your PC's Network Settings or ADSL Router settings.
Reply With Quote
  #8 (permalink)  
Old 05-06-2007, 04:46 PM
LadyDi's Avatar
Palace User
 
Join Date: Mar 2004
Location: Minneapolis, MN
Posts: 17
Rep Power: 0
LadyDi is on a distinguished road
Hi Chris,
I am not that Lady Di cuz I don't know Wildcheree's. I started out Palacing at Til Forever Ends and hang around with the Phoenix Radio bunch at all their Palaces.
I did try a virgin propbag and a virgin borg but neither of those worked.
I suspect it's my Linksys router and something to do with a local address vs a DCHP address but I cannot figure out how to forward ports to a local address so I will keep your script in my borg and work around it that way.
Thanks again, Chris.
Reply With Quote
  #9 (permalink)  
Old 05-07-2007, 12:45 AM
LJ©'s Avatar
Palace User
 
Join Date: Mar 2007
Location: Brisbane, Australia
Posts: 12
Rep Power: 0
LJ© is on a distinguished road
Icon4 HELP on Port Forwarding misc' Router Brands/Models...

(includes LinkSys)
http://portforward.com/routers.htm
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Terminated due to comm error / Client Disconnects SpirItual User Questions 8 03-28-2007 09:26 PM
Weird problem :[ Blake User Questions 4 08-19-2006 02:44 AM
Terminated due to in activity/Client Freezes jamie637 User Questions 5 04-14-2005 06:52 AM
Running problem bluerain User Questions 4 02-01-2005 03:09 PM
having a problem with this script PlatNumDymePiece Palace Builders 3 04-24-2004 11:53 PM

The Latest Posts
Title, Username, & Date Last Post Forum
reading the palace server log
09-15-2011 12:18 AM
by bardos
Palace Builders
Releasing source code
09-14-2011 07:55 AM
by Sman�
Developers Forum
need help with gotoroom script
09-11-2011 01:09 PM
by bardos
Palace Builders
playing music in your palace, how?
09-06-2011 12:26 AM
by maarten
Palace Builders
pserver process
08-01-2011 04:44 AM
by PalaceWeb
./Linux
XPALACE BLOKING
07-26-2011 04:43 AM
by wolfsar
Palace Builders
Online Users: 81
7 members and 74 guests
accermick, Bettina Madarang, BletriemeJext, FriendElizabeth, gotoumeFrelorn, KertirommaHet, lialayUndedge
Most users ever online was 1,010, 06-27-2007 at 11:45 PM.
Stats
Members: 4,707
Threads: 1,145
Posts: 4,011
Top Poster: maarten (1,170)
Welcome to our newest member, Bettina Madarang


All times are GMT +2. The time now is 04:20 AM.


Powered by vBulletin
Copyright ©2000 - 2011, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0