[Ajuda] Funзгo nгo й executada. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Funзгo nгo й executada. (
/showthread.php?tid=455439)
Funзгo nгo й executada. -
Ley - 01.08.2013
Boa Tarde.
Estou com um pequeno problema em meu pequeno cуdigo para proibiзгo de colete no servidor, segue o cуdigo:
PHP код:
SetTimer("Colete", 1000, true);
PHP код:
forward Colete();
public Colete()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Float:colete;
GetPlayerArmour(i, colete);
if(colete > 0)
{
format(formato, sizeof(formato), "%s foi banido do servidor.", VerNome(i));
SendClientMessageToAll(-1, formato);
SCM(i, -1, "Vocк foi banido do Carson, motivo:{FF5050} Colete.");
Ban(i);
return 1;
}
}
}
return 1;
}
O problema й simples, nгo funciona rs.
Alguйm pode me ajudar?
Re: Funзгo nгo й executada. -
Cidiei - 01.08.2013
Tenta ai
pawn Код:
public Colete(playerid){
if(IsPlayerConnected(playerid)){
new Float:colete;
GetPlayerArmour(i, colete);
if(colete > 0){
//Resto do seu cуdigo
return 1;
}
}
return 1;
}