[AJUDA] Comando - 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] Comando (
/showthread.php?tid=265900)
[AJUDA] Comando -
Erickini - 02.07.2011
Bom, eu to tentando colocar um limite de tempo para uma pessoa usar um comando
no relatorio, mais quando eu coloco no relatorio o pawno para de funcionar, aparece um quadro
escrito este programa paro de funcionar bla bla
vo mostrar como eu to colocando.
/RELATORIO
forward Relatorio(playerid);
Код:
if(strcmp(cmd, "/relatorio", true) == 0 || strcmp(cmd, "/relato", true) == 0)
{
SetTimerEx("Relatorio",60, false,"i",playerid);
SendClientMessage(playerid,-1,"[INFO] Aguarde 1 minuto para enviar outro relatorio!");
return 1;
}
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo estб logado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /relatorio [texto]");
return 1;
}
Re: [AJUDA] Comando -
Erickini - 03.07.2011
up oO
Re: [AJUDA] Comando -
Ricop522 - 03.07.2011
https://sampforum.blast.hk/showthread.php?tid=265841
PHP код:
if(strcmp(cmd, "/reparar", true) == 0) {
GetPlayerName(playerid, sendername, sizeof(sendername));
if(logado[playerid] == 1) {
if(PlayerInfo[playerid][Admin] >= 1) {
if(GetPVarInt(playerid, "UsouCMD") == 1) return SendClientMessage(playerid,-1,"Vocк jб usou este comando, espere 120 segundos.");
GetPlayerVehicleID(playerid); RepairVehicle(GetPlayerVehicleID(playerid));
SendClientMessage(playerid, COLOR_CYAN, "[INFORMAЗХES]: Voce reparou seu carro!");
SetTimerEx("UsarCMD", 120000, false,"i",playerid);
SetPVarInt(playerid, "UsouCMD", 1);
return 0x01;
}
else return SendClientMessage(playerid, COLOR_CYAN, "Vocк nгo й VIP para usar este este comando!");
}
else return SendClientMessage(playerid, COLOR_CYAN, "Vocк tem que estar logado para usar este comando!");
return 0x01;
}
forward UsarCMD(j); public UsarCMD(j) return SetPVarInt(j, "UsouCMD", 0);
Sу aprimorar pro seu
Re: [AJUDA] Comando -
Miqueias Barros - 03.07.2011
Na minha assinatura tem um tutorial e explica bem...