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
  #16  
Old 05-22-2007, 10:06 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Don't waste your time.
HTML Code:
function onPlayerChats()
{
  if (player.chat.starts("buy"))
  {

    temp.itemStuff = {
      //buying Name, weapon Name, item Price
      {"Juggaling", "Prizes/Juggle", 30}
    };

    for (temp.currentItem: temp.itemStuff)
    {
      if (temp.currentItem[0] == player.chat.substring(4))
      {
        if (player.clientr.etcoins >= temp.currentItem[2])
        {
          this.buyItem(temp.currentItem); 
        }
      }
    }

  }
}
function buyItem(itemData)
{
  if (player.findWeapon(temp.itemData[1]))
  {
    return false;
  }

  player.addWeapon(temp.itemData[1]);
  player.clientr.etcoins -= temp.itemData[2];
  player.chat = format(_("You've %s %s for %d event coins!"), randomString("purchased", "bought", "stolen"), temp.itemData[0], temp.itemData[2]);
}
__________________
Reply With Quote
  #17  
Old 05-23-2007, 01:59 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Don't waste my time?
__________________
Do it with a DON!
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 05:02 AM.


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