is there a function to know wether the player has an object in is inventory or not?
check out global integers or global ints in the help file/ manual
or just do
if(character[CHARID].inv[ x]) {DoSomething;} else {DoSomethingElse;}
where x is the number of the inventory item.
thanks!
I'll use this.