変愚蛮怒のメインリポジトリです
Revision | 25e63bd65f997eeec3c00c195937d7eebd1c36a0 (tree) |
---|---|
Zeit | 2017-08-31 22:04:59 |
Autor | Deskull <desull@user...> |
Commiter | Deskull |
@@ -2101,19 +2101,6 @@ bool create_artifact(object_type *o_ptr, bool a_scroll) | ||
2101 | 2101 | msg_format_wizard(CHEAT_OBJECT, _("パワー %d で 価値%ld のランダムアーティファクト生成 バイアスは「%s」", |
2102 | 2102 | "Random artifact generated - Power:%d Value:%d Bias:%s."), max_powers, total_flags, artifact_bias_name[artifact_bias]); |
2103 | 2103 | |
2104 | - if (cheat_diary_output) | |
2105 | - { | |
2106 | - char spec[180]; | |
2107 | - char note[200]; | |
2108 | - | |
2109 | - object_aware(o_ptr); | |
2110 | - object_known(o_ptr); | |
2111 | - o_ptr->ident |= (IDENT_MENTAL); | |
2112 | - object_desc(spec, o_ptr, 0); | |
2113 | - sprintf(note, "%s\tDAM:%d", spec, calc_arm_avgdamage(o_ptr)); | |
2114 | - do_cmd_write_nikki(NIKKI_WIZ_ARTIFACT, 0, note); | |
2115 | - } | |
2116 | - | |
2117 | 2104 | /* Window stuff */ |
2118 | 2105 | p_ptr->window |= (PW_INVEN | PW_EQUIP); |
2119 | 2106 |
@@ -694,8 +694,8 @@ errr do_cmd_write_nikki(int type, int num, cptr note) | ||
694 | 694 | break; |
695 | 695 | } |
696 | 696 | |
697 | - case NIKKI_WIZ_ARTIFACT: | |
698 | - fprintf(fff, "WIZ/ARTIFACT_INFO: %s\n", note); | |
697 | + case NIKKI_WIZARD_LOG: | |
698 | + fprintf(fff, "%s\n", note); | |
699 | 699 | break; |
700 | 700 | |
701 | 701 | default: |
@@ -1423,7 +1423,7 @@ static option_type cheat_info[CHEAT_MAX] = | ||
1423 | 1423 | }, |
1424 | 1424 | |
1425 | 1425 | { &cheat_diary_output, FALSE, 255, 0x80, 0x00, |
1426 | - "cheat_diary_output", _("詳細な情報を日記に出力する", "Output detailed infotmation to diary.") | |
1426 | + "cheat_diary_output", _("ウィザードログを日記に出力する", "Output wizard log to diary.") | |
1427 | 1427 | } |
1428 | 1428 | |
1429 | 1429 |
@@ -53,7 +53,7 @@ | ||
53 | 53 | #define FAKE_VER_MAJOR 12 /*!< ゲームのバージョン番号定義(メジャー番号 + 10) */ |
54 | 54 | #define FAKE_VER_MINOR 2 /*!< ゲームのバージョン番号定義(マイナー番号) */ |
55 | 55 | #define FAKE_VER_PATCH 0 /*!< ゲームのバージョン番号定義(パッチ番号) */ |
56 | -#define FAKE_VER_EXTRA 70 /*!< ゲームのバージョン番号定義(エクストラ番号) */ | |
56 | +#define FAKE_VER_EXTRA 71 /*!< ゲームのバージョン番号定義(エクストラ番号) */ | |
57 | 57 | |
58 | 58 | |
59 | 59 | /*! |
@@ -2979,6 +2979,12 @@ void msg_print_wizard(int cheat_type, cptr msg) | ||
2979 | 2979 | char buf[1024]; |
2980 | 2980 | sprintf(buf, "WIZ-%s:%s", cheat_mes[cheat_type], msg); |
2981 | 2981 | msg_print(buf); |
2982 | + | |
2983 | + if (cheat_diary_output) | |
2984 | + { | |
2985 | + do_cmd_write_nikki(NIKKI_WIZARD_LOG, 0, buf); | |
2986 | + } | |
2987 | + | |
2982 | 2988 | } |
2983 | 2989 | |
2984 | 2990 | /* |