Thread: Door-Script
View Single Post
  #1  
Old 11-26-2009, 05:39 PM
OiRodgar OiRodgar is offline
Registered User
OiRodgar's Avatar
Join Date: Jan 2005
Posts: 23
OiRodgar is on a distinguished road
Door-Script

Hi there! I'm trying to script a door that only the account OiRodgar can open with the command /open. Tried a few things but it won't work...

PHP Code:
// NPC made by unknown
//#CLIENTSIDE
function onCreated()

{
  
this.account="OiRodgar";
}
{
  if(
player.account==this.account)
    {
    function 
onPlayerchats()

    {
      if(
player.chat=="/open")

      {
        
hide();
      }
    }
  }

Reply With Quote