View Single Post
  #2  
Old 10-12-2012, 03:50 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
You can setup a class script like this:

level_denyunawesomepeople

PHP Code:
function onPlayerEnters() {
  if (
cantAccess()) {
    
warpAway();
  }
}

function 
cantAccess() {
  if (
player.isawesome) {
    return 
false;
  } else {
    return 
true;
  }
}

function 
warpAway() {
  
player.setlevel2("onlinestartlocal.nw"3030);

then in your levels

PHP Code:
function onCreated() {
  
join("level_denyunawesomepeople");

__________________
Quote:
Reply With Quote