Don't receive a village when becoming a lord

Users who are viewing this thread

Whenever I become a vassal, I do it so I can immediately take a city I have been preparing to siege. However, I am always given a very annoying village that is in very poor condition and far from my factions main area, and instead surrounded by enemy. It also gives me **** relationship with the villages previous lord.  In the end, the village is a third leg to me, and I would rather not have it and pick my own fiefs to capture and keep.
So to get to the point....

Can you remove the giving of a village to the player for becoming a vassal, and if so, how would I go about doing so?
 
Code:
    [anyone,"lord_ask_enter_service",
   [
     (assign, "$g_invite_offered_center", -1),
     (troop_get_slot, ":renown", "trp_player", slot_troop_renown),
     (store_mul, ":vassal_potential", "$g_talk_troop_effective_relation", 5),
     (val_add, ":vassal_potential", ":renown"),
     (call_script, "script_get_number_of_hero_centers", "trp_player"),
     (assign, ":num_centers_owned", reg0),
     (store_mul, ":center_affect", ":num_centers_owned", 50),
     (val_add, ":vassal_potential", ":center_affect"),
     (ge, ":vassal_potential", 150),
     (try_begin),
       (troop_get_type, ":is_female", "trp_player"),
       (eq, ":is_female", 0),
       (eq, ":num_centers_owned", 0),
       (call_script, "script_get_poorest_village_of_faction", "$g_talk_troop_faction"),
       (gt, reg0, 0),
       (assign, "$g_invite_offered_center", reg0),
     (try_end),
     ],
In order for that to not happen, you must either be a female, or own centers of your own before joining the faction. You can also comment out the conditional block after the vassal_potential check. If you are playing a mod with Diplomacy, you are able to give back fiefs to your liege.
 
Back
Top Bottom