View Single Post
  #15  
Old 10-01-2001, 09:36 AM
Shard_IceFire Shard_IceFire is offline
Registered User
Shard_IceFire's Avatar
Join Date: Jun 2001
Location: Eastern Harkoonia
Posts: 861
Shard_IceFire is on a distinguished road
Quote:
if(playertouchsme)
{
setstring client.balls,strtofloat(#s(client.balls))+1;
}
that probably wouldn't work. If you did that, I believe it would set the string client.balls to +1. What you COULD do is:
NPC Code:

if(playertouchsme) {
this.ballplus=1+strtofloat(#s(client.balls));
setstring client.balls,#v(this.ballplus);
}


Don't get mad at me if I'm wrong but I'm pretty sure that what I said is correct.
__________________

-=Shard IceFire=-
Reply With Quote