18.06.2013, 08:33
No problem
just to let you know too, you know longer need to GetPlayerName every time you format a string, you just have to put:
EG: in a kick command:
Name(playerid) if you're using it for the player, and Name(target) if you're using it for commands that require a target (kick, ban, mute etc..)

pawn Код:
Name(playerid)
pawn Код:
format(sString,sizeof(sString),"Admin %s has kicked %s.%s",Name(playerid),Name(target),reason);