#Is it possible to take the current numbering of the dynamic property and add +1?
1 messages · Page 1 of 1 (latest)
Yep
let addOne = player.getDynamicProprety("in_station_event") + 1 ;
player.setDynamicProprety("in_..." , addOne);
I hadn't thought about that 😅
Because it s the only way to do it
player.setDynamicProperty("in_station_event", player.getDynamicProperty("in_station_event") + 1)
Would it work like that?
Yeah that s better
Yes ofc
Thanks a lot for the help