[AJUDA] Comando
#1

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;
			}
Reply


Messages In This Thread
[AJUDA] Comando - by Erickini - 02.07.2011, 21:38
Re: [AJUDA] Comando - by Erickini - 03.07.2011, 02:50
Re: [AJUDA] Comando - by Ricop522 - 03.07.2011, 02:54
Re: [AJUDA] Comando - by Miqueias Barros - 03.07.2011, 16:11

Forum Jump:


Users browsing this thread: 1 Guest(s)