Hello everyone.
How to create a continuous redo?
i use: while {true} do {code?};
but this redo is have limit on 10000 loops.
How to make more?
p.s I check for vehicle damage.
while { true } do { if ( cursorTarget isKindOf "AllVehicles" ) then { if( damage cursorTarget > 0 ) then { systemChat format ["damage value - [%1]", damage cursorTarget]; }; }; };