public void unfollow(MOB mob, boolean quiet) { nofollow(mob, false, quiet); Vector V = new Vector(); for (int f = 0; f < mob.numFollowers(); f++) { MOB F = mob.fetchFollower(f); if (F != null) V.addElement(F); } for (int v = 0; v < V.size(); v++) { MOB F = (MOB) V.elementAt(v); nofollow(F, false, quiet); } }
public boolean invoke(MOB mob, Vector commands, Physical givenTarget, boolean auto, int asLevel) { if (!super.invoke(mob, commands, givenTarget, auto, asLevel)) return false; boolean success = (!mob.isInCombat()) || proficiencyCheck(mob, 0, auto); if (success) { int AUTO = auto ? CMMsg.MASK_ALWAYS : 0; Room recalledRoom = mob.location(); Room recallRoom = mob.getStartRoom(); CMMsg msg = CMClass.getMsg( mob, recalledRoom, this, verbalCastCode(mob, recalledRoom, auto), CMMsg.MASK_MAGIC | AUTO | CMMsg.MSG_LEAVE, verbalCastCode(mob, recalledRoom, auto), auto ? "<S-NAME> disappear(s) into the Java Plane!" : "<S-NAME> recall(s) body and spirit to the Java Plane!"); CMMsg msg2 = CMClass.getMsg( mob, recallRoom, this, verbalCastCode(mob, recallRoom, auto), CMMsg.MASK_MAGIC | AUTO | CMMsg.MASK_MOVE | CMMsg.MSG_ENTER, verbalCastCode(mob, recallRoom, auto), null); if ((recalledRoom.okMessage(mob, msg)) && (recallRoom.okMessage(mob, msg2))) { recalledRoom.send(mob, msg); recallRoom.send(mob, msg2); if (recalledRoom.isInhabitant(mob)) recallRoom.bringMobHere(mob, false); for (int f = 0; f < mob.numFollowers(); f++) { MOB follower = mob.fetchFollower(f); msg = CMClass.getMsg( follower, recalledRoom, this, verbalCastCode(mob, recalledRoom, auto), CMMsg.MASK_MAGIC | AUTO | CMMsg.MSG_LEAVE, verbalCastCode(mob, recalledRoom, auto), auto ? "<S-NAME> disappear(s) into the Java Plane!" : "<S-NAME> <S-IS-ARE> sucked into the vortex created by " + mob.name() + "s recall."); if ((follower != null) && (follower.isMonster()) && (!follower.isPossessing()) && (follower.location() == recalledRoom) && (recalledRoom.isInhabitant(follower)) && (recalledRoom.okMessage(follower, msg))) { msg2 = CMClass.getMsg( follower, recallRoom, this, verbalCastCode(mob, recallRoom, auto), CMMsg.MASK_MAGIC | AUTO | CMMsg.MASK_MOVE | CMMsg.MSG_ENTER, verbalCastCode(mob, recallRoom, auto), null); if (recallRoom.okMessage(follower, msg2)) { recallRoom.send(follower, msg2); if (recalledRoom.isInhabitant(follower)) recallRoom.bringMobHere(follower, false); } } } } } else beneficialWordsFizzle( mob, null, "<S-NAME> attempt(s) to recall, but <S-HIS-HER> plea goes unheard."); // return whether it worked return success; }
public boolean execute(MOB mob, Vector commands, int metaFlags) throws java.io.IOException { commands.removeElementAt(0); MOB leader = CMLib.combat().getFollowedLeader(mob); List<MOB>[] done = CMLib.combat().getFormation(mob); if (commands.size() == 0) { StringBuffer str = new StringBuffer(""); for (int i = 0; i < done.length; i++) if (done[i] != null) { if (i == 0) str.append("^xfront - ^.^?"); else str.append("^xrow +" + i + " - ^.^?"); for (int i2 = 0; i2 < done[i].size(); i2++) str.append(((i2 > 0) ? ", " : "") + ((MOB) done[i].get(i2)).name()); str.append("\n\r"); } mob.session().colorOnlyPrintln(str.toString()); } else if (commands.size() == 1) mob.tell("Put whom in what row?"); else if (mob.numFollowers() == 0) mob.tell("Noone is following you!"); else { String row = (String) commands.lastElement(); if ("FRONT".startsWith(row.toUpperCase())) row = "0"; commands.removeElementAt(commands.size() - 1); String name = CMParms.combine(commands, 0); MOB who = null; if (CMLib.english().containsString(mob.name(), name) || CMLib.english().containsString(mob.Name(), name)) { mob.tell("You can not move your own position. You are always the leader of your party."); return false; } for (int f = 0; f < mob.numFollowers(); f++) { MOB M = mob.fetchFollower(f); if (M == null) continue; if (CMLib.english().containsString(M.name(), name) || CMLib.english().containsString(M.Name(), name)) { who = M; break; } } if (who == null) { mob.tell("There is noone following you called " + name + "."); return false; } if ((!CMath.isNumber(row)) || (CMath.s_int(row) < 0)) mob.tell( "'" + row + "' is not a valid row in which to put " + who.name() + ". Try number greater than 0."); else { int leaderRow = -1; for (int f = 0; f < done.length; f++) if ((done[f] != null) && (done[f].contains(leader))) { leaderRow = f; break; } if (leaderRow < 0) mob.tell("You do not exist."); else if (CMath.s_int(row) < leaderRow) mob.tell( "You can not place " + who.name() + " behind your own position, which is " + leaderRow + "."); else { mob.addFollower(who, CMath.s_int(row) - leaderRow); mob.tell("You have positioned " + who.name() + " to row " + CMath.s_int(row)); } } } return false; }