Hi All,
I would like to share or make brain storming about source compiling, the source without data coming from [RELEASE] UPDATED 02-12-2018 Source and Server No Data No Client.
and my development environment:
- JDK1.8.0_152 64bit
- minimal-json-0.9.4.jar
and changed some code of AIScriptLoader.java from (original)
toCode:JsonObject object = JsonObject.readFrom(readFile(AIServiceProvider.getInstance().getAiPath(
reference.getAiOwner().getTemplate().getAiScriptClassName()
), StandardCharsets.UTF_8));
and it compiled completely successful without any warning or errors.Code:JsonObject object = Json.parse(readFile(AIServiceProvider.getInstance().getAiPath(
reference.getAiOwner().getTemplate().getAiScriptClassName()
), StandardCharsets.UTF_8)).asObject();
https://i.imgur.com/3HvOuzt.png
then it ran smoothly
https://i.imgur.com/heBHPZl.gif
Is this really OK? i am not sure since i am still new on this game and playing normally till level 10 :D:

