[Only registered and activated users can see links. ]
I got everthing to work correctly but I'm confused on where I add the Npc Cerberus. the code
case 4201:
entityDef.name = "Cerberus";
entityDef.combatLevel = 318;
entityDef.standAnim = 6561;
entityDef.walkAnim = 6583;
entityDef.actions = new String[5];
entityDef.actions = new String[] {null, "Attack", null, null, null};
entityDef.anIntArray94 = new int[] {29270};
entityDef.anInt86 = 120;
entityDef.anInt91 = 120;
break;
Didn't check anything in vencillio,
If you can find a switch statement , than put the int under the "switch() {" line of code.
Otherwise add the int under the line of code when your readvalues are declared.
And change "case 4201:" to "if(i == YOURNPC) {" and change "break;" to "}".
Both ways should work correctly , if you do it correctly.