View Single Post
  #16  
Old 01-08-2011, 09:11 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 Skyld View Post
PHP Code:
function isStaff(temp.account)
{
  return 
temp.account in serveroptions.staff;

... just to save you from all that ridiculous index() nonsense.
I use index because it's case-insensitive and therefore better for player input. You can use in if you want but it would have to be

PHP Code:
function isStaff(account) {
  return 
account in serveroptions.staff.tokenize(",");

__________________
Reply With Quote