View Single Post
  #1  
Old 04-08-2007, 03:44 AM
Dionysus Dionysus is offline
RTK| God of Wine
Dionysus's Avatar
Join Date: Apr 2007
Location: United States
Posts: 14
Dionysus is on a distinguished road
Send a message via AIM to Dionysus
Help With The CODES!

Is there an easier way to check whos on RC than this below???

PHP Code:
// NPC made by *Dionysus
function onActionServerside(){
  if (
params[0] == "rccheck") {
    
setstring"temp.admins"NULL);
    for(
i=0;i<allplayerscount;i++) {
      
with(allplayers[i]) {
        if (
player.level == "") {
          
addstring"this.admins"player.account);
        }
      }
    }
  }
}
//#CLIENTSIDE
function onCreated(){
  
triggeraction(0,0,"serverside",name,"rccheck");

__________________


Reply With Quote