ESCAPE Keyboard Button
#1

I am making an RPG Server, but sometimes, when the player got kicked, specially on the Class Selection, we can't press ESCAPE button on keyboard anymore. So, to exit the game, we should type /exit. Why?
Reply
#2

Just add
pawn Код:
SpawnPlayer(playerid);
before you kick the player.

Just make sure you're using the same variable in SpawnPlayer() as you are in Kick().
Reply
#3

Do as Joe said

pawn Код:
#include a_samp

public OnPlayerSpawn(playerid)
{
    Kick(playerid);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)