[AJUDA] SetTimer -
[AF]Junior - 02.03.2011
comofas?
pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
{
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);
}
return 1;
}
Quero que o player sу possa fazer um anъncio de 15 em 15 minutos. Jб tentei e fiz merda.
Re: [AJUDA] SetTimer -
deregudegu - 02.03.2011
Acho que isso pode ajuda:
pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
{
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;
}
if(anuncio == false){
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);
anuncio = true;
SetTimer("ativaran",900000,false);
}if(anuncio == true){
SendClientMessage(playerid, 0xFF0000FF, "Vocк tem que esperar 15 minutos para anunciar de novo.");
}
}
return 1;
}
public ativaran(){
anuncio = false;
}
Re: [AJUDA] SetTimer -
[AF]Junior - 02.03.2011
Nгo quero nada de thug life no meu gm :-S
Re: [AJUDA] SetTimer -
deregudegu - 02.03.2011
Isso nгo й thug nem GF, eu sу peguei seu codigo e coloque a new, settimer e o public para fazer o que vc pediu.
Explicando melhor:
o
serve para deixar o anuncio sу para true e false.
No seu comando eu sу acrescentei:
pawn Код:
if(anuncio == false){
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);
anuncio = true;
SetTimer("ativaran",900000,false);
}if(anuncio == true){
SendClientMessage(playerid, 0xFF0000FF, "Vocк tem que esperar 15 minutos para anunciar de novo.");
}
E fiz a public:
pawn Код:
public ativaran(){
anuncio = false;
}
Ou seja nгo tem nada de GF ou Thug!
Re: [AJUDA] SetTimer -
[AF]Junior - 02.03.2011
hmmmmmmmmmmm inverteu meus miolos...
vou fazer do meu jeito que tб funcionando