Dialog inputtext help!
#5

Gamemode..

Код:
else if(dialogid == 3)
    {
        if(!response)
		{
			SendClientMessage(playerid, COLOR_GREY, "[Error:] You have cancelled the request!");
		}
        if (!strlen(inputtext))
        {
			ShowPlayerDialogEx(playerid, 3);
		}
		SendRaceRequest(playerid, inputtext);
    }
Код:
public SendRaceRequest(playerid, toid)
{
	if(IsPlayerConnected(toid))
	{
		if(InRace[toid] == 0)
		{
		    new racer[MAX_PLAYER_NAME+60];
		    format(racer, sizeof(racer), "[Race:] %s (ID:%d) wants to challenge you in a race.", PlayerName(playerid), playerid);
		    SendClientMessage(toid, COLOR_WHITE, racer);
		    SendClientMessage(toid, COLOR_WHITE, "[Race:] Use /accept race to accept the challenge!");
			SendClientMessage(playerid, COLOR_WHITE, "[Info:] Successfully sent a request to the other player!");
		}
		else
		{
		    SendClientMessage(playerid, COLOR_GREY, "[Error:] The other player is already in a race!");
		}
	}
	else
	{
	    SendClientMessage(playerid, COLOR_GREY, "[Error:] The other player is not connected!");
	}
	return 1;
}
Reply


Messages In This Thread
Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:04
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:07
Re: Dialog inputtext help! - by [MWR]Blood - 23.11.2010, 14:09
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:10
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:15
Re: Dialog inputtext help! - by TheXIII - 23.11.2010, 14:39
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:40
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 14:46
Re: Dialog inputtext help! - by Scenario - 23.11.2010, 14:50
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:51
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 14:58
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:16
Re: Dialog inputtext help! - by Flyfishes - 23.11.2010, 15:19
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:28
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:34
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:39
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:41
Re: Dialog inputtext help! - by Jochemd - 23.11.2010, 15:44
Re: Dialog inputtext help! - by Zh3r0 - 23.11.2010, 15:47

Forum Jump:


Users browsing this thread: 2 Guest(s)