|
From: <gjh...@us...> - 2003-09-05 20:29:30
|
Update of /cvsroot/mistmud/mistmud
In directory sc8-pr-cvs1:/tmp/cvs-serv27062
Modified Files:
Tag: rev_1_3
act.off.c
Log Message:
- reformat
- change slay to actually work at 57
- add skills check to disengage.
Index: act.off.c
===================================================================
RCS file: /cvsroot/mistmud/mistmud/act.off.c,v
retrieving revision 1.5.2.1
retrieving revision 1.5.2.2
diff -C2 -d -r1.5.2.1 -r1.5.2.2
*** act.off.c 22 Aug 2003 21:55:31 -0000 1.5.2.1
--- act.off.c 5 Sep 2003 20:29:24 -0000 1.5.2.2
***************
*** 46,113 ****
if (check_peaceful(ch,
! "You feel too peaceful to contemplate violence.\n\r"))
! return;
only_argument(argument, arg);
if (*arg) {
! victim = get_char_room_vis(ch, arg);
! if (victim) {
[...5265 lines suppressed...]
! for (i = descriptor_list; i; i = i->next)
! if (i->character != ch && !i->connected
! && (IS_NPC(i->character)
! || (!IS_SET(i->character->specials.act, PLR_NOSHOUT)
! && !IS_SET(i->character->specials.act, PLR_NOOOC)
! && !IS_SET(i->character->specials.act,
! PLR_WIZNOOOC)))
! && !check_soundproof(i->character)) {
! // ch_printf(ch,"My clan: %d Other clan: %d",
! // GET_CLAN(clannum), GET_CLAN(i->character) );
! if (IS_AFFECTED2(i->character, AFF2_QUEST))
! send_to_char(buf1, i->character);
! }
}
}
+
+ /*
+ * vim:ts=4:sw=4:ai:et:si:sts=4
+ */
+
|