I don't even have stop fighting, because char_to_room and char_from_room already calls that when you move the character in do_simple_move (mine has one more argument for falling rooms and FALSE to ignore specials, though I'm not sure if that should actually be false).
Code:
ACMD(do_retreat)
{
int i, attempt;
struct char_data *was_fighting;
struct follow_type *k, *next;
int was_in;
if (GET_SKILL(ch, SKILL_RETREAT) < 0)
{
send_to_char(ch, "You do not know how to organize a retreat!\r\n");
return;
}
int cd = 0;
if ((cd = get_cooldown_timer(ch, SKILL_RETREAT)) > 0)
{
send_to_char(ch, "You must wait %d pulses before using %s\r\n", cd, spell_info[SKILL_RETREAT].name);
return;
}
if (GET_SKILL(ch, SKILL_RETREAT) < rand_number(1, 101))
{
send_to_char(ch, "Your attempt to organize a retreat was a failure!\r\n");
act("$n tries to organize a retreat, but fails!", TRUE, ch, 0, 0, TO_ROOM);
return;
}
if (GET_POS(ch) < POS_FIGHTING)
{
send_to_char(ch, "You are in pretty bad shape, unable to retreat!\r\n");
return;
}
add_cooldown_timer(ch, SKILL_RETREAT);
//I deleted this for loop for (i = 0; i < 6; i++)
// {
attempt = rand_number(0, NUM_OF_DIRS - 1); /* Select a random direction */
if (CAN_GO(ch, attempt) &&
!ROOM_FLAGGED(EXIT(ch, attempt)->to_room, ROOM_DEATH))
{
act("$n organizes a retreat and leaves the battle!", TRUE, ch, 0, 0, TO_ROOM);
was_fighting = FIGHTING(ch);
was_in = IN_ROOM(ch);
if (do_simple_move(ch, attempt, FALSE, FALSE))
{
send_to_char(ch, "You retreat from battle!\r\n");
improve_skill(ch, SKILL_RETREAT);
for (k = ch->followers; k; k = next)
{
next = k->next;
if ((k->follower->in_room == was_in) &&
(GET_POS(k->follower) >= POS_FIGHTING))
{
act("You follow $N.\r\n", FALSE, k->follower, 0, ch, TO_CHAR);
do_simple_move(k->follower, attempt, FALSE, FALSE);
}
}
}
else
{
act("$n tries to retreat, but there are no avenues of escape!", TRUE, ch, 0, 0, TO_ROOM);
}
return;
}
//}
send_to_char(ch, "PANIC! Your retreat was an utter failure!\r\n");
}