Dialog won't work
#3

PHP код:
public OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    if(
dialogid == FIRSTMENU)
    {
        if(
response)
        {
            if(
listitem == 0// Weapons
            
{
                
ShowPlayerDialog(playerid,FIRSTMENU+2,DIALOG_STYLE_LIST,
                
"Regular Players Lounge",
                
"MP5\nCombat Shotgun\nDesert Eagle\nM4\nAK-47\nBack",
                
"Select""Exit");
            }
         }
      }
     if(
dialogid == FIRSTMENU+2// Weapons
      
{
           if(
response)
        {
              if(
listitem == 0// MP5
            
{
                new 
ammo GetPlayerAmmo(playerid);
                if(
ammo >=600)
                    {
                        
SendClientMessage(playeridCOLOR_GREY,
                        
"Sorry you have all the free ammo we can give you for now");
                    }
                if(
GetPlayerMoney(playerid) < 15000)
                    {
                    
SendClientMessage(playeridCOLOR_GREY,"* You cannot afford this!");
                    }
                    else
                
GivePlayerMoney(playerid, -15000);
                
GivePlayerWeapon(playerid29200);
            }
            if(
listitem == 1// Chainsaw
               
{
                new 
ammo GetPlayerAmmo(playerid);
                if(
ammo >400)
                    {
                        
SendClientMessage(playeridCOLOR_GREY,
                        
"Sorry you have all the free ammo we can give you for now");
                    }
                if(
GetPlayerMoney(playerid) < 8000)
                    {
                    
SendClientMessage(playeridCOLOR_GREY,"* You cannot afford this!");
                    }
                    else
                
GivePlayerWeapon(playerid,25 ,25);
                
GivePlayerMoney(playerid, -8000);
              }
          }
      }
       return 
1;
  } 
Reply


Messages In This Thread
Dialog won't work - by Krauser123 - 23.06.2016, 00:44
Re: Dialog won't work - by Dayrion - 23.06.2016, 03:43
Re: Dialog won't work - by Krauser123 - 23.06.2016, 03:58
Re: Dialog won't work - by MotherDucker - 23.06.2016, 04:00
Re: Dialog won't work - by Krauser123 - 23.06.2016, 04:05
Re: Dialog won't work - by Dayrion - 23.06.2016, 04:14
Re: Dialog won't work - by Krauser123 - 23.06.2016, 04:35
Re: Dialog won't work - by Dayrion - 23.06.2016, 04:41
Re: Dialog won't work - by Krauser123 - 23.06.2016, 17:34

Forum Jump:


Users browsing this thread: 1 Guest(s)