17.11.2009, 23:45
My thoughts on that are that;
%d is assigned to true.
so just remove the ,string.
and if you're checking for if the player is not that name then,
instead of
you need to do
note how the ' ! ' is for checking if the persons name is not dlegend.
%d is assigned to true.
so just remove the ,string.
and if you're checking for if the player is not that name then,
instead of
pawn Код:
if(strcmp(PlayerName1,"dlegend",true))
pawn Код:
if(!strcmp(PlayerName1,"dlegend",true))