Missions Dialog.
#1

How do I make this dialogue? My mission system is based on some files, and gamemode I write / loadmission and just put a mission and if it does someone have to wait another mission to put everything in / loadmission. I tried something, but I do not put out at all ... missions with LoadMission

http://imgur.com/uGNnSwp

sorry for my english but i need help !
Reply
#2

UP?!??!
Reply
#3

PHP код:
ShowPlayerDialog(playerid,<<your Dialog id>>,2,"Choose Mission Style:",">> Mission Difficult : Easy\n>> Mission Difficult : Normal\n>> Mission Difficult : Hard","select","Quit");
public 
OnDialogResponse(playerid,dialogid,response,listitem)
{
    if(
dialogid == <<Your Dialog id>>)
    {
        switch(
listitem)
        {
            case 
0// is for easy
            
{
                
// do what you want to do here if player select this part
            
}
            case 
1// is for normal
            
{
                
// do what you want to do here if player select this part
            
}
            case 
2// is for hard
            
{
                
// do what you want to do here if player select this part
            
}
        }
    }
    return 
0// you should use return 0;

And The Other Thing's is easly can feet by your self
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)