Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T120669
Change Details
Change Details
Old
New
Diff
To debug the script you can do it like this: [] spawn { distDone = 0; while {true} do { thisisplayerpos = getPos player; systemChat "test"; sleep 3; systemChat str format ["dist done: %1",distDone]; distDone = distDone + round(player distance thisisplayerpos); }; };
To debug the script you can do it like this: ``` [] spawn { distDone = 0; while {true} do { thisisplayerpos = getPos player; systemChat "test"; sleep 3; systemChat str format ["dist done: %1",distDone]; distDone = distDone + round(player distance thisisplayerpos); }; }; ```
To debug the script you can do it like this:
```
[] spawn { distDone = 0; while {true} do { thisisplayerpos = getPos player; systemChat "test"; sleep 3; systemChat str format ["dist done: %1",distDone]; distDone = distDone + round(player distance thisisplayerpos); }; };
```
Continue