Popup Message Location

Users who are viewing this thread

Where in the text documents is the message that pops up every new game and says this:
You are now viewing the overland map. Left-click on the map to move your party to that location, enter the selected town, or pursue the selected party. Time will pause on the overland map if your party is not moving, waiting or resting. To wait anywhere simply press and hold down the space bar.
 
Solution
The trigger from module_triggers.py:
Python:
(0.1, 0, ti_once, [(map_free,0)], [(dialog_box,"str_tutorial_map1")]),
pops up a one-off dialog box with the aforementioned string at the beginning of a campaign while in a world map (tutorial_map1). Module_strings.py (or strings.txt in compiled form) is the location of the text chunk you have posted.

Please mark this post as solution to the thread for others to see if they encounter the same issue.
The trigger from module_triggers.py:
Python:
(0.1, 0, ti_once, [(map_free,0)], [(dialog_box,"str_tutorial_map1")]),
pops up a one-off dialog box with the aforementioned string at the beginning of a campaign while in a world map (tutorial_map1). Module_strings.py (or strings.txt in compiled form) is the location of the text chunk you have posted.

Please mark this post as solution to the thread for others to see if they encounter the same issue.
 
Upvote 1
Solution
Back
Top Bottom