Great so that all works perfectly. But Say If want to check if a user has a certain item if so…such an such happens…etc. But I can’t figure out how I would do this with an If statement. No matter what I can’t get it to work( That is what you’d use right?). Can anyone tell me the best way to do a “check” for this type of thing. Thanks in advance :).
inventory = new Array();//inventory array to store the items collected
Array.prototype.find = function(item) {//prototype to search for a string inside an array
var found = false;
for (var i = 0; i<this.length; i++) {
if (this* == item) {
found = true;
}
}
return found;
};
function addToslot(item) {//function to add item to the inventory
if (!inventory.find(item)) {//if the item isnt already in the inventory
inventory.push(item);//add the item to the inventory
}
}
stop();
And on your item:
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.addToslot(this);
}
}