So I think I've properly defined variables in my abilities in this screenshot. However, is there a way to access these variables through script? Doing ORK.Abilities.Get(). doesn't seem to show anything related to these ability variables.

image
  • ORK.Abilities.Get() only gets you the settings of an ability - an actual ability in-game is an AbilityShortcut instance, which holds the ability's stats (e.g. exp, level, variables).

    I.e. you need to get an actual ability instance from a combatant like this:
    AbilityShortcut ability = combatant.Abilities.Get(id);
    combatant is a Combatant class instance, id is the ID/index of the ability.
    Now you can access the variables calling ability.Variables :)
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • I thought that might be the case, but didn't understand the format. Thank you very much!
Sign In or Register to comment.