Quote:
Originally Posted by Bleachlover551
Example: This?
triggerserver("gui",this.name,"ap=50",MyGUI_TextEd it1.text)
|
Assigning variables doesn't work like this, you just need to pass 50 as a parameter, and then do something like:
PHP Code:
function onActionServerSide(temp.ap, temp.account){
temp.pl = findplayer(temp.account);
if(temp.pl != NULL){
temp.pl.ap = temp.ap;
}
}