check on which actor I'm using an Item

● ARCHIVED · READ-ONLY
Started by Mark91 2 posts View original ↗
  1. Hi
    How can I check on which actor I'm using an item?
    Is it possible without using variables? (es. only using conditional branch?)
  2. $gameParty._targetActorId can give that. You could, for example put:

    $gameVariables.setValue(1,$gameParty._targetActorId)

    In the damage formula of the item, then refer to Var 1 in a common event/whatever. Depends on what you need it for.