Hi everyone!
I can't find a working way , from script (no mouse clicks anywhere, things will happen by typing commands, parser-style) , to do something like:
- use iKey (which is in my inventory) on Hotspot1, or
- use iKey on Object1, or
- use iKey on Character1, or
- use iKey on iOtherInventoryWhichIOwn.
I know I have to deal with RunInteraction and eModeUseWith, but I can't understand in which event, with which syntax.... etc
Thanks!!! :wink:
The two ways from the top of my head are:
1. All these objects have "Use inventory on..." event. Create event functions for them. Then when reacting to the player's command do this:
SomeObject.RunInteraction(eModeUseinv);
this will run "use inventory on" event, if there's a connected function.
To pass what item is used you can set player.ActiveInventory. Or your own global variable of type InventoryItem*.
2. You can keep using one "interact" function for all events, but then set active inventory item before calling it and setting it to null after calling it. Then inside this event function you just check whether active inventory is set, and that would mean that item is used.
I was already doing like that... so I found out that the error was somewhere else!!!
thanks!