Banner

Users who are viewing this thread

user1324865215

Is there any way to get the banner for a kingdom to be your own? I have conqured all rhodock lands, renamed my kingdom "Kingdom of Rhodocks", but i dont have the right banner. Can anyone help?
 
It does not matter, and you can change your banner via the cheat menu.
 
hit ctrl+~ then type in cheatmenu, then go to the camp menu, and click on CHEATMENU, and you can do a bunch of stuff there. Can anyone help me with my real problem?
 
Mrr.Phil said:
Is there any way to get the banner for a kingdom to be your own?

Mrr.Phil said:
hit ctrl+~ then type in cheatmenu, then go to the camp menu, and click on CHEATMENU, and you can do a bunch of stuff there. Can anyone help me with my real problem?

In order to make kingdom banners selectable from the banner selection screen, two lines of code need to be commented out of the module_presentations.py file or deleted from the presentations.txt file.

1. Open module_presentations.py
2. Find the banner selection presentation. Begins with: ("banner_selection",0,mesh_load_window,[
3. About 15 lines down, comment out these two lines by placing a '#' in front of them, like so:
Code:
        #(store_sub, ":num_npc_kingdoms", npc_kingdoms_end, npc_kingdoms_begin),
        #(val_sub, ":try_end", ":num_npc_kingdoms"), #do not allow kingdom banners to be selected
4. Further down, still within "banner_selection" find the line:
Code:
(val_mod, "$g_presentation_page_no", 8),
5. Change the 8 to a 9.
6. Save, compile and play.

1. Make a backup of presentations.txt
2. Open presentations.txt
3. Search for "prsnt_banner_selection"
4. Find the first number after "-60.000000" (in Native it is 35). It should be the 5th number after "prsnt_banner_selection"
5. Subtract two from this number and change it (in Native, change 35 to 33).
6. Find the first instance of 2121 by itself.
7. Select beginning with 2121 up until you see 2122 by itself. Do not select 2122. This selection should include 9 blocks of numbers. It should look like this:
Code:
2121 3 1224979098644774915 432345564227567637 432345564227567631 2106 2 1224979098644774914 1224979098644774915
8. Delete the selected code.
9. Ensure there is 1 (and only 1) space between the 2122 you left alone and the string of numbers that comes before it.
10. Go to the following row, beginning with "-62.000000".
11. Find the first instance of 2109 by itself.
12. Three numbers to the right of 2109, find the number "8" alone. It should look like this:
Code:
2109 2 144115188075856423 8
13. Change the lone "8" to a "9"
14. Save and play.

This will always allow the player to select Kingdom banners for him-/herself, even at game start or when first selecting a banner...or when using the cheatmenu to change the banner mid-game.


EDIT: .txt fix--corrected and numberic code block added
EDIT #2: Fixed for version 1.134
 
Back
Top Bottom