DIALOG doesnt work !
#1

WHY That problem doesnt work !?



Код:
CMD:boston(playerid, params[])
{
    if(PlayerInfo[playerid][pFMember] == 1)
 	{
  		if(IsPlayerInRangeOfPoint(playerid, 0, 1025.156494, -315.600585, 73.988876))
    	{
     		ShowPlayerDialog(playerid, 2815, DIALOG_STYLE_LIST, "El Bostons Lockers", "Duty\nClothes", "Select", "Cancel");
        }
      	else
		{
  			SendClientMessageEx(playerid, COLOR_WHITE, "You aren't in range of your El Bostons lockers.");
 		}
  	}
	return 1;
}
Dialog :

Код:
	if(dialogid == DIALOG_BOSTONS)
	{
     	switch(listitem)
       	{
        case 0://Duty
			{
				GivePlayerValidWeapon(playerid, 24, 60000);
				GivePlayerValidWeapon(playerid, 29, 60000);
				GivePlayerValidWeapon(playerid, 31, 60000);
			    GivePlayerValidWeapon(playerid, 30, 60000);
				GivePlayerValidWeapon(playerid, 25, 60000);
				GivePlayerValidWeapon(playerid, 33, 60000);
				SetPlayerHealth(playerid, 100.0);
				SetPlayerArmour(playerid, 100.0);
			}
			case 1://Clothes
	        {
		    ShowPlayerDialog( playerid, 3495, DIALOG_STYLE_INPUT, "Skin Selection","Please enter a Skin ID!\n\nNote: Skin Changes cost $2500.", "Buy", "Cancel" );
	        }
		}
	}
Reply
#2

Hi

Try this

pawn Код:
CMD:boston(playerid)
{
    if(PlayerInfo[playerid][pFMember] == 1)
    {
        if(IsPlayerInRangeOfPoint(playerid, 0, 1025.156494, -315.600585, 73.988876))
        {
            ShowPlayerDialog(playerid, DIALOG_BOSTONS, DIALOG_STYLE_LIST, "El Bostons Lockers", "Duty\nClothes", "Select", "Cancel");
        }
        else
        {
            SendClientMessage(playerid, COLOR_WHITE, "You aren't in range of your El Bostons lockers.");
        }
    }
    return 1;
}

// OnDialogResponse

if(dialogid == DIALOG_BOSTONS)
{
    if(response)
    {
        if(listitem == 0)
        {
            GivePlayerValidWeapon(playerid, 24, 60000);
            GivePlayerValidWeapon(playerid, 29, 60000);
            GivePlayerValidWeapon(playerid, 31, 60000);
            GivePlayerValidWeapon(playerid, 30, 60000);
            GivePlayerValidWeapon(playerid, 25, 60000);
            GivePlayerValidWeapon(playerid, 33, 60000);
            SetPlayerHealth(playerid, 100.0);
            SetPlayerArmour(playerid, 100.0);
        }
        if(listitem == 1)
        {
            ShowPlayerDialog( playerid, 3495, DIALOG_STYLE_INPUT, "Skin Selection","Please enter a Skin ID!\n\nNote: Skin Changes cost $2500.", "Buy", "Cancel" );
        }    
    }
    return 1;
}
Reply
#3

Doesnt work ty anyway...
Reply
#4

Replace DIALOG_BOSTONS for 2815
Reply
#5

What doesn't work, the dialog doesn't show or the player wont go on duty?
Reply
#6

I do the /boston and nothing happanes and theres no any message...
Reply
#7

Код:
CMD:boston(playerid, params[])
{
    if(PlayerInfo[playerid][pFMember] == 1)
 	{
  		if(IsPlayerInRangeOfPoint(playerid, 0, 1025.156494, -315.600585, 73.988876))
    	{
     		ShowPlayerDialog(playerid, 2815, DIALOG_STYLE_LIST, "El Bostons Lockers", "Duty\nClothes", "Select", "Cancel");
        }
      	else
		{
  			SendClientMessageEx(playerid, COLOR_WHITE, "You aren't in range of your El Bostons lockers.");
 		}
  	}
	return 1;
}

	if(dialogid == 2815)
	{
     	switch(listitem)
       	{
        case 0://Duty
			{
				GivePlayerValidWeapon(playerid, 24, 60000);
				GivePlayerValidWeapon(playerid, 29, 60000);
				GivePlayerValidWeapon(playerid, 31, 60000);
			    GivePlayerValidWeapon(playerid, 30, 60000);
				GivePlayerValidWeapon(playerid, 25, 60000);
				GivePlayerValidWeapon(playerid, 33, 60000);
				SetPlayerHealth(playerid, 100.0);
				SetPlayerArmour(playerid, 100.0);
			}
			case 1://Clothes
	        {
		    ShowPlayerDialog( playerid, 3495, DIALOG_STYLE_INPUT, "Skin Selection","Please enter a Skin ID!\n\nNote: Skin Changes cost $2500.", "Buy", "Cancel" );
	        }
		}
	}
This should work.
Reply
#8

maybe try changing your range, as you put it at 0 range

this:

pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 0, 1025.156494, -315.600585, 73.988876))
to this:

pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 5, 1025.156494, -315.600585, 73.988876))
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)