
Im learning programming an API and I trying to get the first Global Damage (and Attack) Modifier and enable them.
I know that exists an API called ChatSetAttr, but I learning and I want do simplest code.
I found in another threads that has 2 attrs:
repeating_tohitmod_$0_global_attack_active_flag
repeating_damagemod_$0_global_damage_active_flag
Bug I can't access them with:
```
let test1 = findObjs({name: 'repeating_tohitmod_$0_global_attack_active_flag'});
let test2 = findObjs({name: 'repeating_damagemod_$0_global_damage_active_flag});
```
I tried to passing characterId and other keys, but always return empty array.