er... I kinda fixed it...
now, new question
/person {
{ if ( $$1 = minus ) { var %i = %i - %x }
//say person has lost: %x point.
//say god now has: %i points.
}
{ if ( $$1 = add ) { var %i = %i + %x }
//say person has gained: %x point.
//say person now has: %i points.
}
else { halt }
}
that's my script, and I defined the variables in the variable section :tongue:
now, here's the problem: It won't keep track, like.
First time, I add one, so it has 1 point
second time, I add one, and it has 1 point, not two
