Hello all,
I’m a newby in flash, and I wish to create an adventuregame (Rpg, first person view) similar to many others, just for testing my drawing abilities.
The general coding of the game is clear enough to me, but I need an inventory in which to keep useful objects during the game.
To store items inside the inventory, I used the simple tutorial suggested here in kirupa. I attached this code over the item-mc:
on (release) {
_root.addToSlot (this)
this code call the addToSlot function
function addToSlot (item) {
if (!item.found) {
item._x = eval ("itemSlot) + currentslotnum)._x;
item._y = eval ("itemSlot) + currentslotnum)._y;
item.found = true;
…and then one is added to currentslotnum (with currentslotnum++), a variable set to one in the beginning
With this code the inventory is actually functioning, the item goes to the first free slot in the inventory. But obviously I need to use later this item in the game (i.e. a key inside a hole). How can I do this? I tried with a Mc containing a button: with StartDrag and StopDrag method coded with hitTest or _droptarget nothing happens, that is the Mc don’t come out of the inventory - the drag command seems to be ignored.
anyone knows how to do?
I need something similar to skutnik’s Daymare town
http://www.daymaretown.com/dmt1.html
o something similar…
tankhing you all in advance