I been adding all my new races (all 21 of them) and I needed to remove vampire. I spent almost all day doing this and I was down to one thing where it was checking for VAMP_AC in mstat which i removed.
I removed the + VAMP_AC
after that I compiled and got a strange error instead of thinking I took care of it.
act_wiz.c: In function `do_mstat':
act_wiz.c:1917: error: parse error before ';' token
Yeah It was fine, till now? What went wrong??? I would like to get these vampires out of mind I been doing this all day and I am pretty sure I screwed up nanny removing them. (Which I will probably have to post soon, depending if it worked or not :P) As always thanks in advance!
#define GET_AC(ch) ((ch)->armor \
+ ( IS_AWAKE(ch) \
? dex_app[get_curr_dex(ch)].defensive \
: 0 ) \
+ VAMP_AC(ch))
I removed the + VAMP_AC
after that I compiled and got a strange error instead of thinking I took care of it.
act_wiz.c: In function `do_mstat':
act_wiz.c:1917: error: parse error before ';' token
pager_printf_color( ch, "&cHitroll : &C%-5d &cAlign : &w%-5d &cArmorclass: &w%d\r\n",
GET_HITROLL( victim ), victim->alignment, GET_AC( victim ) );
Yeah It was fine, till now? What went wrong??? I would like to get these vampires out of mind I been doing this all day and I am pretty sure I screwed up nanny removing them. (Which I will probably have to post soon, depending if it worked or not :P) As always thanks in advance!