18.09.2017, 00:47
Buenas, estoy "arreglando" una GM y le estoy poniendo un sistema de accesorios.
Hice el comando y todo, luego de varios intentos, y no me da errores a la hora de compilar, pero cuando coloco el CMD en SAMP, me tira este error en el samp-server.exe
Mientras que el comando en .pwn es asн.
Hice el comando y todo, luego de varios intentos, y no me da errores a la hora de compilar, pero cuando coloco el CMD en SAMP, me tira este error en el samp-server.exe
Код:
[17/09/2017 21:45:04] [join] Steven_Dominguez has joined the server (2:192.168.0.102) [17/09/2017 21:45:18] - Cuenta cargada ('Steven_Dominguez' - 1 ms). [17/09/2017 21:45:25] [debug] Run time error 4: "Array index out of bounds" [17/09/2017 21:45:25] [debug] Attempted to read/write array element at index 5 in array of size 5 [17/09/2017 21:45:25] [debug] AMX backtrace: [17/09/2017 21:45:25] [debug] #0 00276304 in public cmd_haber (2, 31969428) from optimusv3.amx [17/09/2017 21:45:25] [debug] #1 native CallLocalFunction () from samp-server.exe [17/09/2017 21:45:25] [debug] #2 0001d4bc in ?? (2, 31969400) from optimusv3.amx [17/09/2017 21:45:25] [debug] #3 00011418 in public FIXES_OnPlayerCommandText (2, 31969400) from optimusv3.amx [17/09/2017 21:45:25] [debug] #4 00003684 in public OnPlayerCommandText (2, 31969400) from optimusv3.amx [17/09/2017 21:45:25] [CMD] Steven_Dominguez: /haber [17/09/2017 21:45:30] [part] Steven_Dominguez has left the server (2:1)
Mientras que el comando en .pwn es asн.
PHP код:
CMD:haber(playerid, params[]) //Volvertosta
{
new stringg[JUGUETES_MAXIMOS*(55)], name[30];
foreachEx(x:JUGUETES_MAXIMOS)
{//
format(name, sizeof(name), "Nada");
for(new i;i<sizeof(Toys_Compra);i++)
{//
if(Toys_Compra[i][hmodelid] == Juguetes[playerid][x][j@modelid])
{
format(name, sizeof(name), "%s", Toys_Compra[i][hmodelname]);
}
format(stringg, sizeof(stringg), "%s(%d) %s (Parte: %s) - Usado: %s", stringg, x, name, Juguetes[playerid][x][j@bone],macro(Juguetes[playerid][i][j@ocultado]==1,""colorlima"Si",""colorrojo"No") );
}//
ShowPlayerDialog(playerid,DIALOGO_MIS_JUGUETES,DIALOG_STYLE_LIST,"{FFFFFF}Mis objetos - {1F98D5}"NOMBRE_SERVIDOR"",stringg,"Siguiente","Salir");
}//
return 1;
}