This function checks if your account is listed in the "staff=" section of the server options, if so it returns "true" and if you're not it returns "false".
Example:
The NPC containing the function(s) is named "System/Functions", and the current NPC want to make a IsStaff() check.
PHP Code:
if (("System/Functions").IsStaff() == true) {
// Proceed with script
}
The code can be found here:
http://www.graal.net/snippet/detail....snippet&id=116
Hopefully you find it usefull, enjoy.