View Single Post
  #11  
Old 01-08-2011, 08:45 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by callimuc View Post
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.
__________________
Reply With Quote