yes... i want do the same than Cod-Mod and ZP...
1) get all .amxx in "classes.ini"
2) with one menu open the .amxx
etc...
but i donw know how...
maybe... this?
Code:
new Cname[MAX_CLASSES][33]
new Cdesc[MAX_CLASSES][33]
new Cexpe[MAX_CLASSES]
new Cvida[MAX_CLASSES]
new Cchal[MAX_CLASSES]
new theid
public native_neo_register_class(const clase_name[], const clase_descripcion[],clase_experiencia,clase_vida, clase_chaleco)
{
param_convert(1);
param_convert(2);
copy(Cname[theid],sizeof Cname[] - 1,clase_name)
copy(Cdesc[theid],sizeof Cdesc[] - 1,clase_descripcion)
Cexpe[theid]= clase_experiencia
Cvida[theid] = clase_vida
Cchal[theid] = clase_chaleco
theid++
}