Files
rr3-assets/files/.depot/scripts/play_random.txt
Daniel Elliott 7b42b6e3de Add complete uncompressed asset files + archive
- 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
2026-02-18 15:19:56 -08:00

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