- Extracted all 13,555 files from files.7z (1.2GB uncompressed) - Includes: vehicles, tracks, audio, textures, UI, manifests - Also kept files.7z for easy download - Full working directory for asset development
12 lines
326 B
Plaintext
12 lines
326 B
Plaintext
// Random is exactly that - just click randomly on the screen once a second
|
|
// passing -1 to a click position = random cord. Otherwise x/y screen cords in the 0 to 1 range (so "0.5 0.5" is middle of the screen)
|
|
|
|
Label: loop
|
|
|
|
Click: -1.0 -1.0 // randomly click anywhere on screen
|
|
|
|
Wait: 1000
|
|
|
|
Goto: loop
|
|
|
|
// End of line |