View Single Post
  #6  
Old 01-27-2008, 04:16 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
He means like time left until you go into observer mode.

I suppose you could do something like this for events

PHP Code:
if ( ( player.isTrial && player.timeLeft 500 ) || ( ! player.isTrial ) )
{
  
teleportPlayerToEvent();
  
w00t();
}
else if ( 
player.isTrial && player.timeLeft <= 500 )
{
  
player.chat "Sorry, you don't have enough time! You must have atleast 500 seconds to join. Upgrade to P2P to remove this.";

So observers couldn't join events.

Or even if it is in less than 10 seconds, warp them to a safe place until they're back. So they aren't stuck in events or blocking something, etc.
__________________
Reply With Quote