Editing Quantitative Quest Results

Users who are viewing this thread

I am trying to erase the penalty to village relation for killing a fugitive hiding there. I assumed this would entail changing some value from "-2" to "0" somewhere, but despite searching the forums and manual "control-f" searching the module system I have not been able to locate where. Help is appreciated.
 
You could do a search with notepad++ and let the program search all the documents. It will list all hits which when double clicked on one of those will open the document at that line. Pretty damn fantastic feature!
 
Code:
      (1, 0, ti_once, [(check_quest_active, "qst_hunt_down_fugitive"),
...
       [(try_begin),
          (main_hero_fallen),
          (jump_to_menu, "mnu_village_hunt_down_fugitive_defeated"),
          (call_script, "script_fail_quest", "qst_hunt_down_fugitive"),
          (finish_mission, 4),
        (else_try),
          (call_script, "script_change_player_relation_with_center", "$current_town", -2), #change this
          (call_script, "script_succeed_quest", "qst_hunt_down_fugitive"),
        (try_end),
        ]),
    ],
  ),
 
Back
Top Bottom