View Single Post
  #2  
Old 09-10-2008, 08:27 PM
[email protected] sid.gottlieb@googlemail.com is offline
Banned
Join Date: Mar 2008
Posts: 861
sid.gottlieb@googlemail.com will become famous soon enough
Don't use that
Use this

HTML Code:
function onPlayerChats() {
  if (player.chat != "buy headbob") return false;
  if (player.rupees < 100) return false;
  if (player.findWeapon("headbob") != false) return false;
  player.addWeapon("headbob");
  player.rupees -= 100;
}
Reply With Quote