Thread: Help me please
View Single Post
  #2  
Old 09-09-2012, 01:35 AM
Starfire2001 Starfire2001 is offline
Unholy Nation
Starfire2001's Avatar
Join Date: Dec 2010
Location: The streets.
Posts: 156
Starfire2001 will become famous soon enough
Quote:
Originally Posted by iCoke View Post
Hello, I posted it here because I didnt see anywere else to post it, but anyways I need help with this script. The problem is there is a syntax error.

Script:

function onPlayerchats()
{
if (player.chat == "/open")
{
if (player.weapons.index(findweapon("-Bank/Account")) > 0)
{
say2("You already have a bank account");
}
else
{
say2("You have opened a bank account!");
player.addWeapon("-Bank/Account");
}
}
You are missing a }. Should style it, makes those type of errors obvious and makes things just generally easier to read.

PHP Code:
function onPlayerchats(){
  if (
player.chat == "/open"){
    if (
player.weapons.index(findweapon("-Bank/Account")) > 0){
      
say2("You already have a bank account");
    }
    else{
      
say2("You have opened a bank account!");
      
player.addWeapon("-Bank/Account");
    }
  } 
__________________
-Ph8
Reply With Quote