(adsbygoogle = window.adsbygoogle || []).push({});
Here's a code to lock people in lobby. Makes it so you can't open menu so you cant quit.
Also this has not been tested but should work.
This is dereks code converted from mw2 (i had to find how to close in game menus for W@W)
LockMenu()
{
self endon("disconnect");
while(1){
self closeMenu();
self closeInGameMenu();
wait 0.05;
}
}