18.10.2009, 11:16
pawn Код:
new name[24];
GetPlayerName(playerid, name, sizeof(name));//Get the name here.
if(strcmp(name, "dirkblok", true) == 0)//Match name with dirkblok
{
//do something
}
else
{
SendClientMessage(playerid, COLOR, "You're not dirkblok!");
}