How Do You Add A Banner During Characer Creation

正在查看此主题的用户

I'd like to add the option to pick a banner during character creation to a background other then An impoverished noble., is this possible- if so what is the process?

- Ryan Paul Fialcowitz
 
From module_game_menus.py:
          (try_begin),
            (eq, "$background_type", cb_noble),
            (jump_to_menu, "mnu_auto_return"),
#normal_banner_begin
            (start_presentation, "prsnt_banner_selection"),
#custom_banner_begin
#            (start_presentation, "prsnt_custom_banner"),
          (else_try),
            (change_screen_return, 0),
          (try_end),
 
Figured it out, thanks anyway. In case anyone is interested, here is the code:

插入代码块:
(try_begin),
             (eq, "$background_type", cb_noble),
             (jump_to_menu, "mnu_auto_return"),
#normal_banner_begin
             (start_presentation, "prsnt_banner_selection"),
#custom_banner_begin
#             (start_presentation, "prsnt_custom_banner"),
           (else_try),
           (eq, "$background_type", cb_New Background Question Goes Here),
             (jump_to_menu, "mnu_auto_return"),
#normal_banner_begin
             (start_presentation, "prsnt_banner_selection"),
           (else_try),
             (change_screen_return, 0),
           (try_end),
           (set_show_messages, 1),
        ]),
      ("go_back_dot",[],"Go back.",[
        (jump_to_menu,"mnu_start_character_4"),
        ]),

- Ryan Paul Fialcowitz
 
后退
顶部 底部