Quote:
Originally Posted by jordy.kiesebrink
WHY Chat? you are checking the ssanf params there so
pawn Код:
""chat" /gotopos [playerid]");
should be
You used a double quote and chat...
also
pawn Код:
SendClientMessage(playerid,-1,""chat""COL_GREY" You cannot use this command");
should be
pawn Код:
SendClientMessage(playerid, COL_GREY,"You cannot use this command");//-1 is a random color and after that you use COL_GREY be sure this is defined or you must use code like 0xFFFFFFAA (White)
|
I didn't pay attention for that, sorry and thanks for the corrections and by the way "-1" is white.