View Single Post
  #19  
Old 08-08-2011, 10:26 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
You can use += and -= to add/subtract from a value (purely based on your preference, but most people do that).

Besides that, the only thing that sticks out is the way you're forming your array. Rather than looping through an array, use it like a hash map.

PHP Code:
function onCreated()
{
  
this.setShape(13232);
  
this.item.fireball = {"Fireball""split_fireball"30};
  
this.item.sword = {"Sword""split_sword"20};
  
this.item.bow = {"Bow""split_bow"10};

Then, to access it, you can do:

PHP Code:
temp.itemInfo this.item.(@ selected); 
__________________
Reply With Quote