NPChandler
Search for
You should see:public void process() {
Under thatpublic void process() {
for (int i = 0; i < maxNPCSpawns; i++) {
if (npcs[i] == null)
continue;
npcs[i].clearUpdateFlags();
}
for (int i = 0; i < maxNPCSpawns; i++) {
if (npcs[i] != null) {
annoyNpcs(i);
(maybe exist) add
if (npcs[i].npcType == 0 && misc.random2(15) == 1) {
npcs[i].updateRequired = true;
npcs[i].textUpdateRequired = true;
npcs[i].textUpdate = "!!Message!!";
}




