I ran into a problem when i tried to access a cooldown link on an ability, i'm using the "Catalog Field Get" trigger function using the following path:
Catalog: Abilities
Entry: QuickStrike
Field Path: CostArray[0].Cooldown.TimeUse
I have also tried with the field path CostArray[0].Cooldown.Link (Trying to access the cooldown link, which i assume would have the same result as the "TimeUse" field) without any result.
This is the error message i get when the trigger runs:
Please note that i have only used Catalogs for 2 days now, and are a beginner, so there may be simple path problems like a "." instead of a "," and so on.
After having a look at the editor again, it appears to be, that my previous statement (which I edited) was correct; you need to use:
"Cost[0].Cooldown.TimeUse" , without the Array.
I ran into a problem when i tried to access a cooldown link on an ability, i'm using the "Catalog Field Get" trigger function using the following path:
Catalog: Abilities
Entry: QuickStrike
Field Path: CostArray[0].Cooldown.TimeUse
I have also tried with the field path CostArray[0].Cooldown.Link (Trying to access the cooldown link, which i assume would have the same result as the "TimeUse" field) without any result.
This is the error message i get when the trigger runs:
Please note that i have only used Catalogs for 2 days now, and are a beginner, so there may be simple path problems like a "." instead of a "," and so on.
Any help or tips are very appreciated :)
Regards, Infernium
€ nvm, small blackout here ;)
Your error message suggests, you did not type "CostArray" but "Costarray"; the strings are case sensitive.
@Kueken531: Go
I've tried with both CostArray[0].Cooldown.TimeUse and Costarray[0].Cooldown.TimeUse
That is not the problem, the screenshot was just taken when i tested the "Costarray" line. But thanks for your reply :)
After having a look at the editor again, it appears to be, that my previous statement (which I edited) was correct; you need to use:
"Cost[0].Cooldown.TimeUse" , without the Array.
@Kueken531: Go
Thanks a lot, that fixed it! :D
I thought the "Array" part was requierd to track arrays, so i did not even consider removing it from the path, but appearently not in this case.
Can i send you a message if i run into another Catalog Field Value problem while finishing this trigger? If you don't mind, of course :)
Edit: Will not be nessesary, i got it all set up and working now. Thanks again!