[DUV SIMPLES] SetTimerEx para Todos? - 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: [DUV SIMPLES] SetTimerEx para Todos? (
/showthread.php?tid=199934)
[DUV SIMPLES] SetTimerEx para Todos? -
Coco-Marrom - 17.12.2010
Opa,
To com uma dъvida,tava fazendo 1 FS pro meu server
ai eu usei o SetTimerEx
quando digita /morrer inicia um tempo pra vida chegar 0,simples.
mas quando alguem digita /morrer,todos morrem dps do tempo que coloquei,como se
todos tivessem digitado '-'
Sei que й simples,й no quarto ou quinto argumento
mas nгo lembro o que coloca
Alguйm me dб uma luz?
Me mandando um exemplo qualquer SetTimerEx que funcione APENAS para
quem digitou?
Valeu :]
@@@EDIT
Mudei o tуpico com o erro real que estб acontecendo
https://sampforum.blast.hk/showthread.php?tid=200050
Re: [DUV SIMPLES] SetTimerEx para Todos? -
[Fx]GhOsT - 17.12.2010
SetTimerEx("public", 1000, 0, "d", playerid);
Re: [DUV SIMPLES] SetTimerEx para Todos? -
H1g0r - 02.03.2011
pawn Код:
Topo:
new bool:Anunciado[500];
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
{
if(Anunciado[playerid] == true) return true;
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
new string[256];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_RED, "USE: /av [texto]");
return 1;
}
format(string, sizeof(string), "{00FF00}%s {00FF00}[{FFFFFF}ID: %d{00FF00}]{FFFFFF}: %s", sendername, playerid, result);
SendClientMessageToAll(0xFFFFFFFF, string);
SendClientMessage(playerid, 0xFF0000FF, "O anъncio custou {00FF00}$3800{FF0000}.");
GivePlayerMoney(playerid, -3800);
Anunciado[playerid] = true;
SetTimerEx("Galoo", 15*6000, 0, "d", playerid);
}
return 1;
}
public Galoo(playerid) {
Anunciado[playerid] == false;
return true;
}