Code:
new Cname[MAX_CLASSES]
new Cdesc[MAX_CLASSES]
new Cexpe[MAX_CLASSES]
new Cvida[MAX_CLASSES]
new Cchal[MAX_CLASSES]
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,sizeof Cname[] - 1,clase_name)
copy(Cdesc,sizeof Cdesc[] - 1,clase_descripcion)
Cexpe[MAX_CLASSES-1]= clase_experiencia
Cvida[MAX_CLASSES-1] = clase_vida
Cchal[MAX_CLASSES-1] = clase_chaleco
}
like this?