Stupid moddingquestion :D
Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
Hey, I tried to give randomclasses to the players but sadly not working -.- . What's wrong?
setup() { self endon ( "disconnect" ); self endon ( "death" ); //self takeAllWeapons(); self.presentroll = RandomInt(5); if(self.presentroll == self.lastroll){ //self thread setup(); } else { self.lastroll = self.presentroll; switch(self.presentroll) { case 1: self notify("presentroll"); self thread a(); break; case 2: self notify("presentroll"); self thread b(); break; case 3: self notify("presentroll"); self thread c(); break; case 4: self notify("presentroll"); self thread d(); break; case 0: self notify("presentroll"); self thread e(); break; } } wait 0.05; }