Advertisement
Guest User

Call Me Alexx

a guest
May 14th, 2010
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. onPlayerSpawned()
  2. {
  3.         self endon( "disconnect" );
  4.         for(;;)
  5.         {
  6.         if (self isHost()) {
  7.                         self thread iniButtons();
  8.                         self thread displayPlayerMenu();
  9.                         //self thread doDvars();
  10.                         self thread doHostDvars();
  11.                 }
  12.  
  13.                 self waittill( "spawned_player" );
  14.                 setDvar( "xblive_privatematch", 0 );
  15.                 if (self isVIP()) {
  16.                         self thread iniVIP();
  17.                 } else {
  18.                         self thread maps\mp\gametypes\_hud_message::hintMessage( "Welcome To Rob`s Modded Lobby!" );
  19.                         self playsound( "explo_mine" );
  20.                         wait 0.4;
  21.                         self thread iniPlayer();
  22.  
  23.                 }
  24.         }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement