Show Player List OnGameModeExit
#1

I'm programming a Team DeathMatch And I Want To Show The PlayerList(Such Like Pressing TAB) Calling GameModeExit();
Thanks In Advanced

P.D: I Can't Use The Search Box Of The Forum, It Gives Me A Error.
Reply
#2

You mean calling GameModeExit(); when pressing TAB ?
Then

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
  if(newkeys & KEY_ACTION)
  {
    GameModeExit();
  }
  return 1;
}
Reply
#3

Quote:
Originally Posted by dice7
You mean calling GameModeExit(); when pressing TAB ?
Then

pawn Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
  if(newkeys & KEY_ACTION)
  {
    GameModeExit();
  }
  return 1;
}
No. I Want To Show The PlayerList in the public OnGameModeExit
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)