12.06.2014, 23:48 
	
	
	
		Nothing bad with your script the dialog input is just too long, 
EDIT: If you are not able to see full command list in-game just increase the string size.
	
	
	
	
pawn Код:
CMD:cmds(playerid)//Instead of defining the params and unuse them just don't define them
{
switch (Language[playerid])
{
case 0:
{
new string[520];
format(string,sizeof(string),"{FF4E8E}Fun Commands:\n {F81414}/alien /weaponizer /iron /police /incred /trashf \n\n {3F4E8E}House Commands:\n{DEC925}/hmenu /buyh /sellh /unlockh /kockh /enterh /exith ");
strcat(string,"\n\n{FF4EFF}Biz Commands :\n{FF4E8E}/bmenu /buybiz /sellbiz \n\n{00FF40}Vehcile Commands{F81414} \n{00FFFF}/Vmenu /Lockcar /Unlockcar \n\n{008740}Reporting Admins Cmds {F81414} \n{FF8740}/Admins /Report [ID] [REASON] /ASK\n\n{FF0000}Other Commands:\n{F81414}/tune /weapon");
ShowPlayerDialog(playerid, 32,DIALOG_STYLE_MSGBOX, "{46BEE6}Server General Commands", string, "Close", "");
}
}
return 1;
}

