CMD:Sendmsg(playerid,params[]) { new text[60]; if(sscanf(params,"s[60]",text)) return SendClientMessage(playerid, 0xFF0000, "Usage:/sendmsg"); GameTextForAll(playerid, "Visit Our Website www.example.conm", 5000, 2); return 1; }
C:\Users\Waqar\Desktop\zombie\gamemodes\zombie.pwn(8693) : error 035: argument type mismatch (argument 1) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
GameTextForAll(playerid, "Visit Our Website www.example.con", 5000, 2);
CMD:Sendmsg(playerid,params[])
{
new text[60];
if(sscanf(params,"s[60]",text))
return SendClientMessage(playerid, 0xFF0000, "Usage:/sendmsg");
GameTextForAll("Visit Our Website www.example.conm", 5000, 2);
return 1;
}
GameTextForAll(params, "Visit Our Website www.example.con", 5000, 2);
C:\Users\Waqar\Desktop\zombie\gamemodes\zombie.pwn(8693) : error 035: argument type mismatch (argument 2) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
GameTextForAll(params, "Visit Our Website www.example.con", 5000, 2);
thanks for ur answers i used
Код:
GameTextForAll(params, "Visit Our Website www.example.con", 5000, 2); Код:
C:\Users\Waqar\Desktop\zombie\gamemodes\zombie.pwn(8693) : error 035: argument type mismatch (argument 2) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. Код:
GameTextForAll(params, "Visit Our Website www.example.con", 5000, 2); |
Hmm,it worked anyway i can reduce the size and about the colors?also it dosnt work if put /sendmsg i have to do /sendmsg sdfa
|