how to block a player in the stage of connecting
#1

how to block a player in the stage of connecting, before stage of choice of skin, until he not login? help please)
Reply
#2

Using OnPlayerRequestClass?
Reply
#3

You can't, but you can make them login before spawning.
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
  if(Logged[playerid] == false) //your variable to check fi the player is logged in
  {
   SendClientMessage(playerid, color, "Not allowed to spawn. Please login!");
   return 0;
  }
  return 1;
}
Reply
#4

it not that...i saw that kind of system on a few servers. when you connecting to server, until its loading you see inscription "VINEWOOD", i need to lock player exactly on this stage.
Reply
#5

You can't unless you set their camera pos there.
Reply
#6

Swift_, thanks, I understood you not so at first)
its ok)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)