This is part of a script from the NPC server on Atrius and it stop working after the new version of graal came out
PHP Code:
function onPM(from, message) {
from = player.account;
temp.pl = findplayer(from);
if (message.starts("/setpin")) {
temp.pin = message.substring(8);
if (abs(int(temp.pin)) == temp.pin) {
if (temp.pin != NULL) {
temp.pl.clientr.pin = abs(int(temp.pin));
temp.pl.sendpm("Success! Your ATM PIN number has been reset to:" SPC temp.pin);
} else temp.pl.sendpm("Your PIN cannot be 0!");
} else temp.pl.sendpm("Your PIN is not a whole real number!");
}
}