Problem with the order of execution of scripts "enfusion".
it was expected that the scripts are executed alphabetically, but in reality this is not how I give an example with int and string, as it was done.
//int
SCRIPT : file 2.c
SCRIPT : file 7.c
SCRIPT : file 10.c
SCRIPT : file 4.c
SCRIPT : file 9.c
SCRIPT : file 1.c
SCRIPT : file 12.c
SCRIPT : file 6.c
SCRIPT : file 3.c
SCRIPT : file 8.c
SCRIPT : file 11.c
SCRIPT : file 5.c
//string
SCRIPT : file d.c
SCRIPT : file i.c
SCRIPT : file a.c
SCRIPT : file f.c
SCRIPT : file k.c
SCRIPT : file c.c
SCRIPT : file h.c
SCRIPT : file e.c
SCRIPT : file j.c
SCRIPT : file b.c
SCRIPT : file g.c
SCRIPT : file l.c
//the code in each file is the same, only the content is different to understand in what order it was executed
modded class MissionServer
{
override void OnInit()
{
super.OnInit();
Print("file 1.c");
}
}