View Single Post
  #3  
Old 05-08-2009, 08:48 AM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
Here you go, just customize it from here:

PHP Code:
function onPlayerChats()
{
 if (
player.chat == "open")
  {
   
dontBlock();
   
this.chat "Open";
   
scheduleEvent(2"BlockEntry""");
  }
}

function 
onBlockEntry()
{
 
blockAgain();
 
this.chat "Closed";
 
scheduleEvent(2"ClearChat""");
}

function 
onClearChat()
{
 
this.chat "";
}

//#CLIENTSIDE
function onCreated()
{
 
this.chat "";
 
setshape(13232);

Reply With Quote