Graal Forums  

Go Back   Graal Forums > PlayerWorlds > Bomy Island Main Forum
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 07-12-2002, 10:33 AM
Faith2002 Faith2002 is offline
Registered User
Join Date: Jul 2002
Location: LaCrosse, Wisconsin
Posts: 8
Faith2002 is on a distinguished road
Send a message via AIM to Faith2002
Questions O.o

XD, Im what you call n00b to this forum, But i have questions that couldn't be answered on any other forums, that some people might know.

1.) How come the NPC-Server makes the Server sign's Lag so about 5-6 seconds later the sign message will pop up?

2.) My items change every time im sparring either that or it just happens to me :grrr:


Bah just a few questions =o No responses or this thread will be closed most likely -_-, Whatever,

~Ashley L. Lopez
__________________
Reply With Quote
  #2  
Old 07-12-2002, 10:39 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Re: Questions O.o

Quote:
Originally posted by Faith2002
1.) How come the NPC-Server makes the Server sign's Lag so about 5-6 seconds later the sign message will pop up?
Because the signs are processed serverside, and thus the resultant text strings must be sent to the player instead of simply being read from the level. This obviously takes a little longer.

Quote:
2.) My items change every time im sparring either that or it just happens to me :grrr:
Dat's y0 problem, f00.
__________________
Reply With Quote
  #3  
Old 07-12-2002, 10:40 AM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu is a jewel in the roughTorankusu is a jewel in the rough
Re: Re: Questions O.o

Quote:
Originally posted by Kaimetsu


Because the signs are processed serverside, and thus the resultant text strings must be sent to the player instead of simply being read from the level. This obviously takes a little longer.
Would say2 and setshape help?
__________________
Quote:
Originally posted by Spark910
Think befreo you type.
Reply With Quote
  #4  
Old 07-12-2002, 10:43 AM
Faith2002 Faith2002 is offline
Registered User
Join Date: Jul 2002
Location: LaCrosse, Wisconsin
Posts: 8
Faith2002 is on a distinguished road
Send a message via AIM to Faith2002
No im like the lamest scripter there is O.o

i know what say2 is the best i can script is

if (playerenters)
playerap = 100;}
}



^_^ And im proud of my unusual Newbie Scripting Skills o.O
__________________
Reply With Quote
  #5  
Old 07-12-2002, 10:45 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Re: Re: Re: Questions O.o

Quote:
Originally posted by Torankusu
Would say2 and setshape help?
Well, it depends. Any say2 from the serverside will still take a while to reach the player. Usually we can use clientside say2s, if the message is just something like "Hi, I am a simple sign". But if the sign includes stuff like #s(somestring), and that string isn't readable from the client, then they'll have to go from the server.
__________________
Reply With Quote
  #6  
Old 07-12-2002, 10:47 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally posted by Faith2002
if (playerenters)
playerap = 100;}
}
I think you mean:
NPC Code:

if (playerenters){
playerap = 100;
}

__________________
Reply With Quote
  #7  
Old 07-12-2002, 10:54 AM
Questa Questa is offline
Back to the Beat
Join Date: Jan 2002
Location: USA
Posts: 1,230
Questa is on a distinguished road
Send a message via AIM to Questa
Quote:
Originally posted by Kaimetsu


I think you mean:
NPC Code:

if (playerenters){
playerap = 100;
}

That won't work online right?
__________________
Reply With Quote
  #8  
Old 07-12-2002, 11:02 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally posted by Questa

That won't work online right?
Depends. If that code were ran serverside then it would work. Clientside with an NPC Server, it wouldn't. Without an NPC Server, I don't know. I've never stooped to coding without one.
__________________
Reply With Quote
  #9  
Old 07-12-2002, 11:54 AM
Proxy Proxy is offline
Registered User
Proxy's Avatar
Join Date: Oct 2001
Location: West Kentucky
Posts: 774
Proxy is on a distinguished road
Send a message via AIM to Proxy
Re: Questions O.o

Quote:
Originally posted by Faith2002

2.) My items change every time im sparring either that or it just happens to me :grrr:
Usually when that happens doesn't it mean someone's updated an NPC or something like that?
__________________
Reply With Quote
  #10  
Old 07-12-2002, 04:55 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
When you read a sign then the server is translating it into your language (on Graal2001 there is some German, Portuguese, French) and then sends it to you. Normally it shouldn't be 5-6 seconds, 0.5 seconds at max
Reply With Quote
  #11  
Old 07-12-2002, 05:00 PM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu is a jewel in the roughTorankusu is a jewel in the rough
Quote:
Originally posted by Stefan
When you read a sign then the server is translating it into your language (on Graal2001 there is some German, Portuguese, French) and then sends it to you. Normally it shouldn't be 5-6 seconds, 0.5 seconds at max
On servers like Bravo it takes about three.
__________________
Quote:
Originally posted by Spark910
Think befreo you type.
Reply With Quote
  #12  
Old 07-12-2002, 06:06 PM
royce royce is offline
Banned
royce's Avatar
Join Date: Sep 2001
Location: Yakitinzen, China
Posts: 2,271
royce is on a distinguished road
Send a message via AIM to royce
Quote:
Originally posted by Stefan
When you read a sign then the server is translating it into your language (on Graal2001 there is some German, Portuguese, French) and then sends it to you. Normally it shouldn't be 5-6 seconds, 0.5 seconds at max
Your servers may be fast but is Faith2002's connection fast? Ding Ding.
Reply With Quote
  #13  
Old 07-12-2002, 06:39 PM
adam adam is offline
http://wiki.graal.us/
adam's Avatar
Join Date: Nov 2001
Posts: 2,247
adam has a spectacular aura aboutadam has a spectacular aura about
Send a message via AIM to adam
Quote:
Originally posted by Stefan
When you read a sign then the server is translating it into your language (on Graal2001 there is some German, Portuguese, French) and then sends it to you. Normally it shouldn't be 5-6 seconds, 0.5 seconds at max



it has never been that fast.
__________________
Rogue Shadow (TCN)(NAT)(Global Development Team)

For development help, contact the patrons of the #graaldt irc channel below, I am usually there.
Click Here to Join IRC Chat Now! -- irc.freenode.net Channel: #graaldt
Quote:
<Dustyshouri> no, RogueShadow is always talking about scripts lol
<Dustyshouri> in fact, he pretty much brought Graal back as a topic single-handedly
Reply With Quote
  #14  
Old 07-12-2002, 08:25 PM
warp2ukew warp2ukew is offline
Prime Rib of Micronesia
warp2ukew's Avatar
Join Date: Feb 2002
Location: In a van down by the river.
Posts: 1,718
warp2ukew will become famous soon enough
ahh too many scripting commands *brain jumps out of head nad runs away*
__________________
Reply With Quote
  #15  
Old 07-12-2002, 09:30 PM
CheeToS2 CheeToS2 is offline
That Guy
CheeToS2's Avatar
Join Date: Dec 2001
Location: Seattle, WA
Posts: 2,528
CheeToS2 will become famous soon enough
Send a message via AIM to CheeToS2
Quote:
Originally posted by Stefan
When you read a sign then the server is translating it into your language (on Graal2001 there is some German, Portuguese, French) and then sends it to you. Normally it shouldn't be 5-6 seconds, 0.5 seconds at max
is there a built in translator or something?

or do some scripts have messages written in a bunch of different languages & sends the one the client is set to?
__________________

Reply With Quote
Reply


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

Forum Jump


All times are GMT +2. The time now is 05:26 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.