Quote:
Originally Posted by killerogue
Dude, some general words of wisdom from a friend, Learn how to script first before you start trying to script everything complicated. Not a word for word quote as I forgot the exact words. But, meh, get's the point across.
All of GS1 is basically deprecated, how do you find:
setstring this.stuff,#c(blah)
easier than,
this.stuff = "blah";
I just don't get it....
|
setstring this.stuff,#c(blah)?
That's basically doing this in GS2:
this.stuff = players[blah].chat;
Perhaps you just mean to write:
setstring this.stuff,blah;