23.12.2011, 09:07
Estou querendo criar um fs de vips e socios, mas nao entendi o motivo do erro que aconteceu.
Esse й o erro \/
Erros:
Sendo que a linha 109 й:
Comando Inteiro:
Alguйm pode me ajudar ? Agradeзo
Esse й o erro \/
Erros:
pawn Код:
C:\Documents and Settings\Alex Sander\Meus documentos\Downloads\SistemaV.pwn(109) : error 035: argument type mismatch (argument 3)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
pawn Код:
format(gstring, sizeof(gstring), -1, "VIP: %s [Vip-Ouro]", playerid);
pawn Код:
if(strcmp(cmdtext, "/vips", true)==0)
{
SendClientMessage(playerid, -1, "______________ [ Vip's Online ] ______________");
if(IsPlayerConnected(playerid))
{
if(PlayerVip[playerid] == 1)
{
format(gstring, sizeof(gstring), "VIP: %s [Vip-Bronze]", playerid);
SendClientMessage(playerid, -1, gstring);
}
if(PlayerVip[playerid] == 2)
{
format(gstring, sizeof(gstring), "VIP: %s [Vip-Prata]", playerid);
SendClientMessage(playerid, -1, gstring);
}
if(PlayerVip[playerid] == 3)
{
format(gstring, sizeof(gstring), -1, "VIP: %s [Vip-Ouro]", playerid);
SendClientMessage(playerid, -1, gstring);
}
}
return 1;
}
Alguйm pode me ajudar ? Agradeзo