06.09.2012, 23:45
You need to use a string specifier instead of the u specifier
would be
pawn Код:
new TargetID;
if( !sscanf(params, "u", TargetID))
pawn Код:
new TargetID[MAX_PLAYER_NAME];
if( !sscanf(params, "s[24]", TargetID))

