Quote:
Originally Posted by callimuc
so can i use like
PHP Code:
function onPlayerChats() {
if (player.chat == "/test") {
function isStaff(account) {
return serveroptions.staff.tokenize(",").index(@ account) > (- 1);
dothestuff;
}
}
}
|
PHP Code:
function onPlayerChats() {
if (player.chat == "/test") {
if (isStaff(player.account)) {
// do stuff
}
}
}
function isStaff(account) {
return serveroptions.staff.tokenize(",").index(@ account) > (- 1);
}
Functions have to go outside of any other function.