It might be quite funny but I really didn't know how to search to find the answer for this one.
I always use something like this when I want to join strings "string = "something" + "somethingelse" "
but how to do it with INT? :)
Random r = new Random();
int lvfirst = r.Next(485924948);
int lvsecond = r.Next(39);
int lvdone = lvfirst + lvsecond;
Globals.GlobalInt = lvdone;
I tried doing one long int but it doesn't seem to work it says something about Long so if you can help me how to join this 2 random numbers into 1? I need 1 random number max "48592494839"
Thanks a lot!