06.04.2013, 13:29
Example
when you click player you store clickedplayerid in a player variable
in dialog you kick the player by reading the playervar
you can create the playervar like this
dear Doreto.. your var is not per player var
when you click player you store clickedplayerid in a player variable
pawn Код:
PlayerVar[playerid] = clickedplayerid;
pawn Код:
Kick(PlayerVar[playerid]);
you can create the playervar like this
pawn Код:
new PlayerVar[MAX_PLAYERS];
dear Doreto.. your var is not per player var