Quote:
|
Originally Posted by Bl0nkt
Example:
NPC Code:
if (playertouchsme)
setstring clientr.hp,strtofloat(#v(clientr.hp))+1;
At least I think that's what it is. Haven't done GS1 in a while.
|
Example of why old script is evil

.
Should be:
NPC Code:
setstring clientr.hp,#v(strtofloat(#s(clientr.hp)) + 1);
Not your fault. Old gscript's fault.