View Single Post
  #9  
Old 03-19-2010, 08:44 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 DrakilorP2P View Post
That's so complicated. The original is much easier to use and roughly equivalent in security.
All it really needed was

PHP Code:
// class 'door'
function onPlayerTouchsMe() {
  if (
player.guild == this.guild || this.guild == null) {
    
player.setLevel2(this.newLevelthis.newXthis.newY);
  }

PHP Code:
// level script
function onCreated() {
  
this.guild "My Guild";
  
  
this.newLevel "level.nw";
  
this.newX 32;
  
this.newY 32;
  
  
this.join("door");

__________________
Reply With Quote