View Single Post
  #7  
Old 04-01-2008, 12:18 AM
Rapidwolve24 Rapidwolve24 is offline
North*
Join Date: Oct 2007
Location: Massachusetts
Posts: 178
Rapidwolve24 is on a distinguished road
Send a message via AIM to Rapidwolve24 Send a message via MSN to Rapidwolve24
Quote:
Originally Posted by Tigairius View Post
It's a 1-3 second loop in a DBNPC that checks allplayers

PHP Code:
function onCreated() {
  
onTimeout();
}

function 
onTimeout() {
  for (
temp.playerallplayers) {
    if (
temp.player.head != "tig-rchead2.png" && temp.player.level.name == NULL) {
      
temp.player.head "tig-rchead2.png";
      
this.onRCLogin(temp.player.link());
    }
  }
  
setTimer(2);
}

function 
onRCLogin(pl) {
  
pl.sendpm("Hello new RC.");

What the hell is link()?
Reply With Quote