Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #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
  #2  
Old 11-26-2009, 05:47 PM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
did u pay attention of what rc 'errors' told you?

the thing that is wrong with your script is that, u probably, by mistake, draged "function onPlayerchats()
" down a few lines down.
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #3  
Old 11-26-2009, 05:49 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
PHP Code:
// NPC made by unknown
//#CLIENTSIDE
function onCreated() {
  
this.access "OiRodgar";
}

function 
onPlayerchats() {
  if(
player.chat == "/open" && player.account == this.access) {
    
hide();
  }

Reply With Quote
  #4  
Old 11-26-2009, 05:54 PM
OiRodgar OiRodgar is offline
Registered User
OiRodgar's Avatar
Join Date: Jan 2005
Posts: 23
OiRodgar is on a distinguished road
Quote:
Originally Posted by DustyPorViva View Post
PHP Code:
// NPC made by unknown
//#CLIENTSIDE
function onCreated() {
  
this.access "OiRodgar";
}

function 
onPlayerchats() {
  if(
player.chat == "/open" && player.account == this.access) {
    
hide();
  }

Ah, thank you, now I understand. By the way, thanks for the help in the other thread.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:35 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.