Thread: Help me please
View Single Post
  #1  
Old 09-09-2012, 01:28 AM
iCoke iCoke is offline
Registered User
Join Date: Jun 2012
Posts: 5
iCoke is on a distinguished road
Help me please

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");
}
}
Reply With Quote