22.09.2011, 08:53
I've been using this plugin for a long time but I swear something is wrong with the last value I've noticed while doing while doing some last minute beta testing.
The MP5 NEVER gets called. I've tried over 100's of times and I've never seen the MP5 used. Does it needs to be MRandom(3) I thought it had to be 2 and It started from 0. I have seen M4 and 9mm called but NEVER seen MP5 called so I assume this is a bug with the last number and this is the case and EVERY application I have found it for as I use MRandom alot in my script.
Code:
new number = MRandom(2); if(number == 0) { format(str, 128, "M4"); } else if(number == 1) { format(str 128, "9mm"); } else if(number == 2) { format(str, 128, "MP5"); }