Ok so now i have this problem where I need monsters to drop objects when they are dead.
Now I was able to make one monster die and get it to drop its item. BUT
If i put another monster of same name type (goblin) and have the same item (rupee) it wont drop it because it's a different name. (rupee1).
This is part of my code that has the outcome if monster dies it drops rupee. How do i make the second goblin drop its rupee in the other room?
msg ("The monster dies in a puff of smoke.")
monster.dead = true
Rupee.drop = true
if (Rupee.drop = true) {
msg ("Monster dropped a rupee.")
thanks.
MoveObject (Rupee, west pass3)