Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-19-2005, 09:15 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
Question Food Bar

I'm trying to make a food system for Dark Rival. So far, i can make the person need food, and their hunger grow, etc, but i can't make it display a 'food bar, under the MP bar, that would slowly decrease. Anyone know how i would do it?
Reply With Quote
  #2  
Old 08-19-2005, 09:20 PM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
showimg, changeimgvis, changeimgpart
Reply With Quote
  #3  
Old 08-19-2005, 09:29 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
yeah, but that puts the image at a specific x and y, on the level
Reply With Quote
  #4  
Old 08-19-2005, 09:43 PM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
changeimgvis.
Reply With Quote
  #5  
Old 08-19-2005, 09:58 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
=/ still having trouble, but this is a start X_x
that puts it in the top corner, it moves, but it is above the asd thing X_X how your i move it down
Reply With Quote
  #6  
Old 08-19-2005, 10:08 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
When you are working on the level layers, image X and Ys reference to coordinates on the level.
When you are working on the GUI layers, image X and Ys reference to the actual position on the screen (pixel coordinates, that is), starting from the top-left corner of the Graal window.
__________________
Skyld
Reply With Quote
  #7  
Old 08-20-2005, 04:40 AM
Idrox0 Idrox0 is offline
Registered User
Join Date: Oct 2003
Posts: 66
Idrox0 is on a distinguished road
If you want to display the bar on the right side of the screen, do screenwidth-whatever for displaying. This ensures that people who resize their screen will still have the same format.
__________________
Reply With Quote
  #8  
Old 08-20-2005, 11:56 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
im having trouble making the food points part of the bar to go down, changeimgpart in't working, but then again, im not sure i did it right. any suggestions on how to make the bar shrink by 1 each time it runs through the loop?

Last edited by excaliber7388; 08-21-2005 at 04:27 AM.. Reason: X_x typo
Reply With Quote
  #9  
Old 08-21-2005, 02:00 AM
Maniaman Maniaman is offline
Registered User
Join Date: Aug 2005
Posts: 326
Maniaman is on a distinguished road
changeimgpart not changeimgparts
__________________

Current Maloria Event: (click to go to it)
Reply With Quote
  #10  
Old 08-21-2005, 04:29 AM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
sorry...typo X_x
i do mean changeimgpart
and nope, still cant get it. i have the bar up and lined up, the Fp runs out etc, but i cant get the bar to shrink as the food points run out. X_x
Reply With Quote
  #11  
Old 08-21-2005, 04:48 AM
konidias konidias is offline
Old Bee
konidias's Avatar
Join Date: Jul 2001
Location: Orlando, FL
Posts: 7,222
konidias will become famous soon enough
Send a message via AIM to konidias
Can you post your changeimgpart line?
__________________

Put this image in your sig if you support Bomy Island! (g2k1 revision)
play bomberman while you wait!


Reply With Quote
  #12  
Old 08-21-2005, 09:40 AM
Idrox0 Idrox0 is offline
Registered User
Join Date: Oct 2003
Posts: 66
Idrox0 is on a distinguished road
It could be a stupid mistake, such as forgetting to put the bar drawing in a repeating timeout . Also, a little thing in there is that if you tell it to draw the image width as 0, it will draw the entire thing. There's my two cents, but the code would be nice, yes.
__________________
Reply With Quote
  #13  
Old 08-21-2005, 01:32 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
You don't need to keep updating the HP in a timeout. You can add a simple validation to check if the HP is changed from before.
__________________
Reply With Quote
  #14  
Old 08-21-2005, 04:00 PM
konidias konidias is offline
Old Bee
konidias's Avatar
Join Date: Jul 2001
Location: Orlando, FL
Posts: 7,222
konidias will become famous soon enough
Send a message via AIM to konidias
There are multiple ways to do it. You could have the food value have a max of 100 and a min of 1. Then you just do something like:

changeimgpart index,0,0,foodvalue,10;

Which would make the food bar display from an x of 0 to an x of whatever your food value is... like if it were 50, it would display from 0 to 50, which would be half the bar, if your bar was 100 pixels in width.

Otherwise you're going to need a small formula to adjust for the difference in pixel width to food value.
__________________

Put this image in your sig if you support Bomy Island! (g2k1 revision)
play bomberman while you wait!


Reply With Quote
  #15  
Old 08-21-2005, 07:19 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
this is what I have so far, I might make it set your hearts to 1 or .5 if it tuns out, instead of killing you, that way you have time to get food:
// NPC made by Excaliber
//this script makes the player say their food points. It usually would not take 1 sec to lose a point, but this was for testing, this is for offline mode right now, with toweapons I will need one for online mode
if(playerenters){client.food=100;}
//#CLIENTSIDE
if(playerenters){
client.food=100;
toweapons *Food System;}
while(isweapon){
setplayerprop #c,#v(client.food);
client.food=client.food-1;
changeimgpart 1,0,0,client.food,10;
if(client.food<1){
playerhearts=0;client.food=1}
sleep 1}
if(created){
showimg 2,drfoodbarback.png,15,115;
changeimgvis 2,4;
showimg 1,drfoodbarfp.png,37,121;
changeimgvis 1,4;}
if(playerchats&&strequals(#c,/food)){
setplayerprop #c,#v(client.food)}
Reply With Quote
  #16  
Old 08-21-2005, 08:07 PM
projectigi projectigi is offline
Registered User
Join Date: Jan 2004
Posts: 403
projectigi is an unknown quantity at this point
maybe u should use code tags
NPC Code:

//#CLIENTSIDE
if(playerenters){
setstring client.food,;
toweapons *Food System;
}
if(created){
showimg 2,drfoodbarback.png,15,115;
changeimgvis 2,4;
showimg 1,drfoodbarfp.png,37,121;
changeimgvis 1,4;
timeout=1;
}
if(timeout){
setplayerprop #c,#v(client.food);
setstring client.food,#v(strtofloat(#s(client.food))-1);
changeimgpart 1,0,0,imgwidth(drfoodbarfp.png)/100*strtofloat(#s(client.food)),imgheight(drfoodba rfp.png);
if(strtofloat(#s(client.food))<1){
setstring client.food,1;
playerhearts=0;
}
timeout=1;
}
if(playerchats&&strequals(#c,/food)){
setplayerprop #c,#v(client.food);
}




hmm i think u should use setstring instead of client.food=;
then use probably want to use a timeout...
didnt test it cuz i dont have the images
and i used the imgwidth and imageheight cuz i dont know how width/height your images are
Reply With Quote
  #17  
Old 08-21-2005, 08:34 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by excaliber7388
this is what I have so far, I might make it set your hearts to 1 or .5 if it tuns out, instead of killing you, that way you have time to get food:
// NPC made by Excaliber
//this script makes the player say their food points. It usually would not take 1 sec to lose a point, but this was for testing, this is for offline mode right now, with toweapons I will need one for online mode
if(playerenters){client.food=100;}
//#CLIENTSIDE
if(playerenters){
client.food=100;
toweapons *Food System;}
while(isweapon){
setplayerprop #c,#v(client.food);
client.food=client.food-1;
changeimgpart 1,0,0,client.food,10;
if(client.food<1){
playerhearts=0;client.food=1}
sleep 1}
if(created){
showimg 2,drfoodbarback.png,15,115;
changeimgvis 2,4;
showimg 1,drfoodbarfp.png,37,121;
changeimgvis 1,4;}
if(playerchats&&strequals(#c,/food)){
setplayerprop #c,#v(client.food)}
Please, format your code. It will make it both easier to read and easier to spot syntax errors.
  • Because you are closing a block of code is no reason not to use ';', so don't do sleep 1 (without the ';') and close the block
  • When you are only using one command as a result of an if check, you do not need to use '{' and '}', i.e. if (playerchats && strequals(#c,/food)) setplayerprop #c,#v(client.food);
  • Use some spacing. if(client.food<1){ is almost harder to look at than if (client.food < 1) {
  • Close blocks on a new line, don't do sleep 1;}
  • Use indentation, and when posting code on the forums, surround it with [code] tags to preserve indentation
__________________
Skyld
Reply With Quote
  #18  
Old 08-21-2005, 08:36 PM
konidias konidias is offline
Old Bee
konidias's Avatar
Join Date: Jul 2001
Location: Orlando, FL
Posts: 7,222
konidias will become famous soon enough
Send a message via AIM to konidias
It's probably better if you used clientr. strings, unless you don't care about people cheating your system and using a memory editor to make it so their hunger meter never goes down.
__________________

Put this image in your sig if you support Bomy Island! (g2k1 revision)
play bomberman while you wait!


Reply With Quote
  #19  
Old 08-21-2005, 08:56 PM
Amagius Amagius is offline
Cult of the Winky
Amagius's Avatar
Join Date: Sep 2001
Location: The USoCR's friendly twin
Posts: 3,225
Amagius is on a distinguished road
Quote:
Originally Posted by konidias
It's probably better if you used clientr. strings, unless you don't care about people cheating your system and using a memory editor to make it so their hunger meter never goes down.
I would do it.
__________________
[AIM:RitaReplusa]
mail:[email protected]]
Reply With Quote
  #20  
Old 08-21-2005, 09:49 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
clietntr?
i used them once for a weapons saver, but i wasn't 100% what they were for X_x
btw, i got it to work, yours wasn't perfect, but i couldnt do it w/o it thanks!

Last edited by excaliber7388; 08-22-2005 at 12:01 AM..
Reply With Quote
  #21  
Old 08-22-2005, 11:05 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by excaliber7388
clietntr?
i used them once for a weapons saver, but i wasn't 100% what they were for X_x
btw, i got it to work, yours wasn't perfect, but i couldnt do it w/o it thanks!
clientr. strings are readable both clientside and serverside, but can only be written to on the serverside.
client. strings are readable and writable both on the clientside and the serverside.
__________________
Skyld
Reply With Quote
  #22  
Old 08-22-2005, 05:29 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
it works fine off line, but i'm having trouble online here is the current script i'm using:
NPC Code:
//#CLIENTSIDE
if(playerenters){
setstring client.food,100;
toweapons *Food System;
}
if(created){
showimg 2,drfoodbarback.png,15,115;
changeimgvis 2,4;
showimg 1,drfoodbarfp.png,37,121;
changeimgvis 1,4;
timeout=1;
}
if(timeout){
sleep 0;setstring client.food,#v(strtofloat(#s(client.food))-1);
changeimgpart 1,0,0,imgwidth(drfoodbarfp.png)/100*strtofloat(#s(client.food)),imgheight(drfoodba rfp.png);
if(strtofloat(#s(client.food))<2.1){
setstring client.food,2;
playerhearts=.5;
}
timeout=1;
}
if(strtofloat(#s(client.food))=5){
setplayerprop #c, I'm so hungry!;
}
if(strtofloat(#s(client.food))<1){
setstring client.food,1;
playerhearts=.5;
}
if(weaponfired){say2 You have to eat#bevery few hours.#bThe third bar at the top#bis for food.#bIf it runs out you#b will become very weak.;setplayerprop #c,#s(client.food)}

Reply With Quote
  #23  
Old 08-22-2005, 06:17 PM
Polo Polo is offline
Classic Systems Admin
Join Date: Sep 2002
Location: Vancouver, Canada
Posts: 735
Polo is on a distinguished road
Send a message via AIM to Polo
Quote:
Originally Posted by excaliber7388
toweapons *Food System;
Really, don't use toweapons on your server.
__________________
Be good little players, or Master Storm will ban you!



Proof that the staff are crazy..
*Ghost Pirate: I'm a little teacup short and stubbe here is my raygun here is my butt
DragonX: Jumping jack rabbits Batman! Our eggo waffles have been stolen! To the batmobile Robin!
X-Mann (RC): I have a head ache
Reply With Quote
  #24  
Old 08-22-2005, 10:32 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
it wasn't toweapons, but i got it fixed
but now im having more problems w/ the food. i have putnpc enabled, but for some reason, it's not puiing in npc, what could be wrong?
Reply With Quote
  #25  
Old 08-23-2005, 11:18 AM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Paste the putnpc2 script? lol.
__________________
Reply With Quote
  #26  
Old 08-23-2005, 05:01 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
i wasn't aware there was a putnpc2 command =/
whats the format of it?
Reply With Quote
  #27  
Old 08-23-2005, 08:57 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
putnpc2 x,y,{script};
__________________
Reply With Quote
  #28  
Old 08-23-2005, 10:26 PM
calani calani is offline
Scriptess
calani's Avatar
Join Date: Aug 2003
Location: asmgarden.gmap
Posts: 606
calani is on a distinguished road
Send a message via AIM to calani
Quote:
Originally Posted by excaliber7388
while(isweapon){
While() while online = while. Er, I mean bad.
__________________
Reply With Quote
  #29  
Old 08-23-2005, 10:34 PM
ForgottenLegacy ForgottenLegacy is offline
-Backtoscripts-
Join Date: Aug 2003
Location: California
Posts: 289
ForgottenLegacy is on a distinguished road
Send a message via AIM to ForgottenLegacy
Quote:
Originally Posted by calani
While() while online = while. Er, I mean bad.
Translation: Don't use the while() function serverside. It would crash a server. z-z
__________________
"The higher you fly, the harder it is to breathe."

[Kaidenn] Maybe I will somehow take control of Lance's body when he isn't looking, have him log onto Kingdoms, update one script, and leave.
[Kaidenn] And leave him exactly where I found him, unchanged and completely unnaware of what just took place the last two minutes.
[GrowlZ] Lance: You might want to lock your bedroom door tonight
Reply With Quote
  #30  
Old 08-24-2005, 01:18 AM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
yeah i've noticed...tons of lag X_x
Reply With Quote
  #31  
Old 08-24-2005, 01:34 AM
Luigi203 Luigi203 is offline
Hamma Time
Luigi203's Avatar
Join Date: Mar 2003
Location: North East PA
Posts: 285
Luigi203 is on a distinguished road
Send a message via AIM to Luigi203
Quote:
Originally Posted by ForgottenLegacy
Translation: Don't use the while() function serverside. It would crash a server. z-z
Uuuh? If its not used properly it will crash a server...? I used it several times and it never crashed the server.


NPC Code:


if (created) i = 0;

while (i < 10) i++;

__________________


CAUTION

Last edited by Luigi203; 08-24-2005 at 01:51 AM..
Reply With Quote
  #32  
Old 08-24-2005, 02:54 AM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
when it's loading it lags alot, and with multiple players in the level, or many NPCs, you could have trouble. X_x
Reply With Quote
  #33  
Old 08-24-2005, 12:17 PM
Fry Fry is offline
Registered User
Fry's Avatar
Join Date: Sep 2001
Location: Germany
Posts: 384
Fry has a spectacular aura about
That's why you put things in an event block and NOT outside.
You can use while, just make sure it isn't an infinite loop.
__________________
Graal Statistics

Top 3 servers at the moment (players):


Reply With Quote
  #34  
Old 08-24-2005, 12:17 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Luigi203
Uuuh? If its not used properly it will crash a server...? I used it several times and it never crashed the server.


NPC Code:


if (created) i = 0;

while (i < 10) i++;

Why not just use for (i=0; i<0; i++)?

Anyway. Using while serverside to run as many loops as it possibly can (not just 10 in your case) will likely cause problems on a server.
__________________
Skyld
Reply With Quote
  #35  
Old 08-24-2005, 04:59 PM
ForgottenLegacy ForgottenLegacy is offline
-Backtoscripts-
Join Date: Aug 2003
Location: California
Posts: 289
ForgottenLegacy is on a distinguished road
Send a message via AIM to ForgottenLegacy
Infinite loops serverside have crashed servers. I've personally watched someone do this on Doomsday z-z and I accidentally did it myself on Babylon. You want the serverside script to run /once/, and that's only when changing clientr strings or adding/removing weapons, etc. You shouldn't use showimg or any image commands serverside, unless you have to, due to the lack of a triggeraction to clientside in level npcs z-z HINT HINT STEFAN!

Infinite loops = bad
Infinite loops serverside = very bad
__________________
"The higher you fly, the harder it is to breathe."

[Kaidenn] Maybe I will somehow take control of Lance's body when he isn't looking, have him log onto Kingdoms, update one script, and leave.
[Kaidenn] And leave him exactly where I found him, unchanged and completely unnaware of what just took place the last two minutes.
[GrowlZ] Lance: You might want to lock your bedroom door tonight
Reply With Quote
  #36  
Old 08-24-2005, 05:00 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by ForgottenLegacy
Infinite loops serverside have crashed servers. I've personally watched someone do this on Doomsday z-z and I accidentally did it myself on Babylon. You want the serverside script to run /once/, and that's only when changing clientr strings or adding/removing weapons, etc. You shouldn't use showimg or any image commands serverside, unless you have to, due to the lack of a triggeraction to clientside in level npcs z-z HINT HINT STEFAN!

Infinite loops = bad
Infinite loops serverside = very bad
You should not use showimg or image commands serverside, period.
__________________
Skyld
Reply With Quote
  #37  
Old 08-24-2005, 09:16 PM
calani calani is offline
Scriptess
calani's Avatar
Join Date: Aug 2003
Location: asmgarden.gmap
Posts: 606
calani is on a distinguished road
Send a message via AIM to calani
Quote:
Originally Posted by Skyld
You should not use showimg or image commands serverside, period.
do they even work serverside....?
__________________
Reply With Quote
  #38  
Old 08-24-2005, 09:43 PM
ForgottenLegacy ForgottenLegacy is offline
-Backtoscripts-
Join Date: Aug 2003
Location: California
Posts: 289
ForgottenLegacy is on a distinguished road
Send a message via AIM to ForgottenLegacy
Quote:
Originally Posted by Skyld
You should not use showimg or image commands serverside, period.
For debug purpouses, you have to from time to time. It is frowned upon, but there is usually no possible way around it to show an image using information gathered from a serverside part of a level or DB npc.

Calani: showtext() does not work serverside. Showimg() and Showimg(@@@) DO work serverside.
__________________
"The higher you fly, the harder it is to breathe."

[Kaidenn] Maybe I will somehow take control of Lance's body when he isn't looking, have him log onto Kingdoms, update one script, and leave.
[Kaidenn] And leave him exactly where I found him, unchanged and completely unnaware of what just took place the last two minutes.
[GrowlZ] Lance: You might want to lock your bedroom door tonight
Reply With Quote
  #39  
Old 08-24-2005, 09:47 PM
calani calani is offline
Scriptess
calani's Avatar
Join Date: Aug 2003
Location: asmgarden.gmap
Posts: 606
calani is on a distinguished road
Send a message via AIM to calani
o.o kay.
waiiiit, how aobut serverside in levelnpcs? (such as from joined classes)
__________________
Reply With Quote
  #40  
Old 08-24-2005, 09:48 PM
ForgottenLegacy ForgottenLegacy is offline
-Backtoscripts-
Join Date: Aug 2003
Location: California
Posts: 289
ForgottenLegacy is on a distinguished road
Send a message via AIM to ForgottenLegacy
Quote:
Originally Posted by calani
o.o kay.
waiiiit, how aobut serverside in levelnpcs? (such as from joined classes)
Quote:
Originally Posted by ForgottenLegacy
It is frowned upon, but there is usually no possible way around it to show an image using information gathered from a serverside part of a level or DB npc.
o-o

EDIT
Eep, didn't clarify. Information gathered from/by (I use those two words interchangeably, they mean the same thing to me z-z) and used by the same or another level or DB npc.
__________________
"The higher you fly, the harder it is to breathe."

[Kaidenn] Maybe I will somehow take control of Lance's body when he isn't looking, have him log onto Kingdoms, update one script, and leave.
[Kaidenn] And leave him exactly where I found him, unchanged and completely unnaware of what just took place the last two minutes.
[GrowlZ] Lance: You might want to lock your bedroom door tonight
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:23 AM.


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