Help me with my /helpme command xD
#7

Quote:
Originally Posted by Soumi
Посмотреть сообщение
This is my /helpme command, after testing it i found out that when a normal player (Who is not a helper) uses this command it sends a message to online helpers But this Doesn't show up for the player
Код:
SendClientMessage(playerid, GREEN, "You have successfully sent a help request, please be patient");
and PlayerStat[playerid][HelpmeReloadTime] isn't set to 61. However if you are a helper and you use this command it will work perfectly. thanks for ur help.

Код:
COMMAND:helpme(playerid, params[])
{
	new message[128], string[128];
	if(PlayerStat[playerid][hMuted] == 1) return SendClientMessage(playerid, GREY, "You are muted from sending help requests.");
    if(sscanf(params,"s[128]", message))return SendClientMessage(playerid, GREY, "USAGE: /helpme [message]");
    if(PlayerStat[playerid][HelpmeReloadTime] > 1) return SendClientMessage(playerid, GREY, "You must wait 10 seconds before sending another help request.");
    for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i) && PlayerStat[i][HelperLevel] >= 1)
		{
		    format(string, sizeof(string), "(( %s (ID: %d) has sent a help request: %s ))", GetOOCName(playerid), playerid, message);
		    SendClientMessage(i, GREEN, string);
		    HelpmeLog(string);
                    SendClientMessage(playerid, GREEN, "You have successfully sent a help request, please be patient");
	            PlayerStat[playerid][HelpmeReloadTime] = 61;
		}
	}
    return 1;
}
Instead of looping within the command, create a seperate function which will send the message to those who's value is set in the variable. Also, if the reload time doesn't work, show the timer function in which checks the value (in seconds or milliseconds) of the time which has been set.
Reply


Messages In This Thread
Help me with my /helpme command xD - by Soumi - 07.08.2011, 23:48
Re: Help me with my /helpme command xD - by Tee - 07.08.2011, 23:52
[No subject] - by Soumi - 08.08.2011, 00:23
Re: Re : Help me with my /helpme command xD - by Tee - 08.08.2011, 00:28
Re : Re: Re : Help me with my /helpme command xD - by Soumi - 08.08.2011, 00:36
Re: Help me with my /helpme command xD - by Tee - 08.08.2011, 00:40
Re: Help me with my /helpme command xD - by Kush - 08.08.2011, 00:41
Re: Help me with my /helpme command xD - by Tee - 08.08.2011, 00:47
Re : Help me with my /helpme command xD - by Soumi - 08.08.2011, 00:52
Re: Help me with my /helpme command xD - by Tee - 08.08.2011, 00:54

Forum Jump:


Users browsing this thread: 4 Guest(s)