Vincent Posted July 14, 2013 Posted July 14, 2013 Hi, how is it possible to make the amount of items random? for example random 1-10. if (.@check_level > 4) getitem 508,1; else getitem 507,1; Quote
DeadlySilence Posted July 14, 2013 Posted July 14, 2013 if (.@check_level > 4) { getitem 508, rand(1, 10); } else { getitem 507, rand(1, 10); } Like this. Quote
Skorm Posted July 14, 2013 Posted July 14, 2013 (edited) getitem 508,rand(1,10); Edit: holy crap!!! I refreshed and bam! 2 post lawl Edited July 14, 2013 by Skorm Quote
Vincent Posted July 14, 2013 Author Posted July 14, 2013 thanks. Like everytime to DeadlySilence, Emistry and Skorm. Quote
Question
Vincent
Hi, how is it possible to make the amount of items random?
for example random 1-10.
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.