18.02.2013, 01:12
Buenas a Todos Tengo un problema con los dialogos con DIALOG_STYLE_INPUT, Solo con DIALOG_STYLE_INPUT me sucede, cuando preciono los botones me crachea el server y tira un mensaje del samp-server:
Log del crashdetect:
[debug] Server crashed while executing archivo.amx
[debug] AMX backtrace:
[debug] #0 native CallLocalFunction () [00471c30] from samp-server.exe
[debug] #1 0001f540 in public OnDialogResponse () from archivo.amx
[debug] System backtrace:
Error:
Script:
que sucede?
Desde ya muchas Gracias.
Log del crashdetect:
[debug] Server crashed while executing archivo.amx
[debug] AMX backtrace:
[debug] #0 native CallLocalFunction () [00471c30] from samp-server.exe
[debug] #1 0001f540 in public OnDialogResponse () from archivo.amx
[debug] System backtrace:
Error:
Script:
pawn Код:
COMMAND:test(playerid, params[])
{
new string[10];
ShowPlayerDialogEX(playerid, 150, DIALOG_STYLE_INPUT, string, 10, "Titulo", "texto", "Escribir", "Cancelar");
return 1;
}
stock ShowPlayerDialogEX(playerid, menuid, estilo, caracteres[], caracteresmax, titulo[], texto[], boton1[], boton2[]) {
format(caracteres,caracteresmax, texto);
ShowPlayerDialog(playerid, menuid, estilo, titulo, caracteres, boton1, boton2);
return 1;
}
Desde ya muchas Gracias.