View Single Post
  #8  
Old 03-18-2005, 04:14 PM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
in GS2, the commands aren't so much different.
Basically it's the same thing only everything is in function format(which is good because that will make scripts run smoother and faster). For example:
hide;
is now
hide();

something like:
tokenize #c;
is now
tokenize(#c);

there are differences with setplayer prop and setcharprop though:
setplayerprop #c,bla;
would now be
player.chat=bla;
or
player.#c=bla; (if I'm not mistaken)
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts

Last edited by Darlene159; 03-19-2005 at 04:02 PM..
Reply With Quote