PHP код:
stock ShowAjuda(playerid, help[])
{
new string[3200];
new title[24];
new entry[256];
format(title,24,"Ajuda %s", help);
new str[48];
format(str,48,"/RPG/help/%s.txt", help);
new File:file = fopen(str, io_read);
if(file)
{
while(fread(file, entry))
{
format(string,sizeof(string),"%s%s", string,entry);
}
}
return ShowPlayerDialog(playerid,100, DIALOG_STYLE_MSGBOX, title, string, "Ok", "Voltar");
}