mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-23 02:30:13 +01:00
Fixed shops no longer displaying unlimited and affect flags off by 1 (128 bit). --Rumble
This commit is contained in:
parent
76d1d89597
commit
bfa47111db
3 changed files with 31 additions and 31 deletions
|
|
@ -858,9 +858,12 @@ void do_stat_character(struct char_data *ch, struct char_data *k)
|
|||
CCGRN(ch, C_NRM), GET_MANA(k), GET_MAX_MANA(k), mana_gain(k), CCNRM(ch, C_NRM),
|
||||
CCGRN(ch, C_NRM), GET_MOVE(k), GET_MAX_MOVE(k), move_gain(k), CCNRM(ch, C_NRM));
|
||||
|
||||
send_to_char(ch, "Gold: [%9d], Bank: [%9d] (Total: %d), Questpoints: [%d]\r\n",
|
||||
GET_GOLD(k), GET_BANK_GOLD(k), GET_GOLD(k) + GET_BANK_GOLD(k), GET_QUESTPOINTS(k));
|
||||
send_to_char(ch, "Gold: [%9d], Bank: [%9d] (Total: %d), ",
|
||||
GET_GOLD(k), GET_BANK_GOLD(k), GET_GOLD(k) + GET_BANK_GOLD(k));
|
||||
|
||||
if (!IS_NPC(k))
|
||||
send_to_char(ch, "Questpoints: [%d]\r\n", GET_QUESTPOINTS(k));
|
||||
|
||||
send_to_char(ch, "AC: [%d%+d/10], Hitroll: [%2d], Damroll: [%2d], Saving throws: [%d/%d/%d/%d/%d]\r\n",
|
||||
GET_AC(k), dex_app[GET_DEX(k)].defensive, k->points.hitroll,
|
||||
k->points.damroll, GET_SAVE(k, 0), GET_SAVE(k, 1), GET_SAVE(k, 2),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue