24.01.2015, 22:37
Hi, i have a problem creating a new line in a dialog (msg_box).
The text come from a variable.
Thx for your help and sorry for my bad english!
The text come from a variable.
pawn Код:
// Text from db:
// "Tu trabajo como Clнnico es fortalecer\n a otros jugadores ofreciendoles\n inyecciones con Adrenalina."
// Enum:
enum trabajos
{
tId,
tNombre_trabajo[28],
tSkin,
Float:tPos_x,
Float:tPos_y,
Float:tPos_z,
tFuerza,
tResistencia,
tAstucia,
tAgilidad,
tInteligencia,
tAyuda[300] // <===
};
// Loading dialog:
if(strfind(ayuda, lista_trabajos[i][tNombre_trabajo], true) != -1)
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Ayuda", lista_trabajos[i][tAyuda], "Cerrar", "");
}
// Result:
Thx for your help and sorry for my bad english!