Java 64 – Good ol’times
Yes, it’s back now more structured, and not shitty anymore. If it is complete the introduction to the new syntax will be displayed here. Wait for it!! It’s getting more great and great!
import java.io.*;
public class NPCHandler {
public static int maxNPCs = 10000;
public static int maxListedNPCs = 10000;
public static int maxNPCDrops = 10000;
public NPC npcs[] = new NPC[maxNPCs];
public NPCList NpcList[] = new NPCList[maxListedNPCs];
public NPCDrops NpcDrops[] = new NPCDrops[maxNPCDrops];
NPCHandler() {
for (int i = 0; i < maxNPCs; i++) {
npcs[i] = null;
}
for (int i = 0; i < maxListedNPCs; i++) {
NpcList[i] = null;
}
for (int i = 0; i < maxNPCDrops; i++) {
NpcDrops[i] = null;
}
loadNPCList(“npc.cfg”);
loadNPCDrops(“npcdrops.cfg”);
loadAutoSpawn(“autospawn.cfg”);
}
Loads the NPC List. Just to know, the syntax is exact the same.






Recent Comments