I've downloaded an engine from the STR site, but it is faulty due to a script error. It says there is a syntax error (197) which results in a compilation error (220).
class STRScript isclass strscript_locomotoraselectricas {
thread void luceslocomotoras() {strscript_vehiculos.luceslocomotorautomaticas(me,me);} //Luces Funcionales (de Locomotoras)
thread void calefaccion() {strscript_vehiculos.calefaccion(me);} //Mangas de Calefacción Funcionales
//************************I N I T*************************
//--------------------------------------------------------
public void Init(void) { //Funcion principal de cabecera del script.
inherited(); //Hereda
luceslocomotoras();
calefaccion();
}
//--------------------------------------------------------
//********************************************************
};
I'm starting to think that isclass is an extend function, if I'm right. Anyone encounter this?
class STRScript isclass strscript_locomotoraselectricas {
thread void luceslocomotoras() {strscript_vehiculos.luceslocomotorautomaticas(me,me);} //Luces Funcionales (de Locomotoras)
thread void calefaccion() {strscript_vehiculos.calefaccion(me);} //Mangas de Calefacción Funcionales
//************************I N I T*************************
//--------------------------------------------------------
public void Init(void) { //Funcion principal de cabecera del script.
inherited(); //Hereda
luceslocomotoras();
calefaccion();
}
//--------------------------------------------------------
//********************************************************
};
I'm starting to think that isclass is an extend function, if I'm right. Anyone encounter this?