I have a function (very simple) that "displaytexttoforce" the numbers i need.
Only problem is this is a long and grueling task (i need over thousand sets) - as i need to copy the number to multiple screenshots, then copy them via notepad.
Is there a pattern to each random set? (i only need the first digit of each table that is between 0-100).
ie.
Code: Select all
SetRandomSeed(0)
print_to_file_or_User(GetRandomInt(0,100))
SetRandomSeed(1)
print_to_file_or_User(GetRandomInt(0,100))
SetRandomSeed(2)
... etc
i cannot just print into a game because i need thousands of sets. im not going to alt+tab 1000 times

--
So, 2 Questions;
1. Is there a mathematical algortithm for these random sets (can u tell me what it is?), OR are they predefined? (can i find them?) - im guessing the former.
2. Is there a way i can copy in game chat, OR Write to a text file using JASS, or similar?
Optional Question-
is this JASS the same as Java JASS? Tehre must be a write to file function somewhere?
(NOTE: This is for single player, I'm doing this so i can use the Random Table Sets Externally and have Reference to them)
---
Thank you in advance for any help - i appreciate it really
