21.03.2011, 14:01
HI ALL!
This is simple dialog, wich shows people what`s new on ur server,you can easy edit this. A little video 4 u!

[ame]http://www.youtube.com/watch?v=H_Kj9HrcS_k[/ame]
So enjoy and feel free to edit

Cmds:
/new > open dialog.
DOWNLOAD
SolidFiles >
http://solidfiles.com/d/e291/
(.Pwn)
http://solidfiles.com/d/a68b/
(.Rar)
Enjoy.
P.S. U can make this dialog to apear at spawn :
Код:
public OnPlayerSpawn(playerid) { ShowPlayerDialog(playerid, 111, DIALOG_STYLE_LIST, "What`s new?", "New admins\nNew Events\nNew members\nWhat will be in the future?", "Select", "Cancel"); return 1; } public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { if(dialogid == 111) { if(response) { if(listitem == 0) { ShowPlayerDialog(playerid,1,DIALOG_STYLE_MSGBOX,"New Admins :","There NO NEW ADMINS.So respect them and their decisions!:)","Okay",":D");//You can edit text easy } if(listitem == 1) { ShowPlayerDialog(playerid,12345,DIALOG_STYLE_MSGBOX,"New Events :","21.03.11. > Dance Party! It was awesome!:)","Okay",":D");//You can edit text } if(listitem == 2) { ShowPlayerDialog(playerid,12345,DIALOG_STYLE_MSGBOX,"New Members :","Welcom new members :[Player #1],[Player #2],[Player #1] :)","Okay",":D");//U can edit and add more text } if(listitem == 3) { ShowPlayerDialog(playerid,12345,DIALOG_STYLE_MSGBOX,"In future :","1)Race in Docks.2)Beach party.3)DM in Admin house! :)","Join it",":D");//And so on..... } /* if(listitem == 4) { //you can add more } */ return 1; } return 0; } return 1; } // FEEL FREE TO EDIT> Den <