Quote:
Originally Posted by Seich
PHP Code:
function onActionPlayerOnline(){
if(client.reset != true){
temp.acc = player.account;
sendtorc(format("/reset s", temp.acc));
client.reset = true;
}
}
|
You shouldn't use client. variables for things like a reset since client. variables can be edited with a memory editor. You should use a clientr. variables and there's no need to use a temp variable you could just do
sendtorc("/reset" SPC player.account);.