SA-MP Forums Archive
Dialog - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Dialog (/showthread.php?tid=246566)



Dialog - Speed - 04.04.2011

How to add something in dialog...

here is the cmd:

pawn Код:
SendClientMessage(playerid, RYDER,":: GENERAL :: (/wi)ndows /coin /trunk (/inv)entory /knock /knockout /give /otvorikapiju /sid /smoke");
            SendClientMessage(playerid, RYDER,":: CHAT :: (/p)me (/cw)hisper (/o)oc (/s)hout /low (/b) (/f)action /me /do /togooc /tognews /togfam /togpm /togphone");
            SendClientMessage(playerid, RYDER,":: BANK :: /balance /withdraw /deposit /wiretransfer /bwithdraw /bdeposit /bbank /bhelp");
            if(PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pMember] == 1)
            {
                SendClientMessage(playerid, RYDER, ":: POLICE :: (/r)adio (/d)epartments (/m)egaphone (/su)spect /mdc /arrest /duty /wanted /cuff /tazer /undercover");
                SendClientMessage(playerid, RYDER, ":: POLICE :: /bk /bkc /gov /area51 /ram /drag ");
                SendClientMessage(playerid, RYDER, ":: POLICE :: /roadblock /uklonisveblokade /roadunblock /tracelastcall(/tlc) /opengate");
            }
And so one how to add this only for read...


Re: Dialog - Speed - 05.04.2011

bump


Re: Dialog - Medal Of Honor team - 05.04.2011

pawn Код:
ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_MSGBOX, "Help", "/r)adio (/d)epartments (/m)egaphone (/su)spect /mdc /arrest\n/duty /wanted /cuff /tazer /undercover); // change the dialogid to any id you want



Re: Dialog - Zh3r0 - 05.04.2011

pawn Код:
ShowPlayerDialog( playerid, 9900, DIALOG_STYLE_MSGBOX, "This is a title", "This is inside the black box", "Button1", Button2" );
9900 - ID of the dialog, can be any number! > 0
DIALOG_STYLE_MSGBOX - The style of the box, MSGBOX means just a message, INPUT it's a box with an input and LIST is a box with lists!