Master armorer doesn't give me Wolf Lorica

Users who are viewing this thread

I remember master armorers used to give you wolf and bear armor, now i returned back to the game after years and this isn't the case anymore. I've reloaded for about like 20 times now and Donnchadh won't give me a Wolf Lorica. Instead i get briton suits and norse helmets. Have they  removed the animal armor's from the surprise list?
 
Code:
  [anyone|plyr,"armorer_choose", [], "I'd like something else. Surprise me (4 options, 19000 peningas).", "armorer_window",[
      (store_troop_gold,":money","trp_player"),
      (try_begin),
        (gt,":money",18999),
        (troop_remove_gold, "trp_player", 19000),
        (store_random_in_range, ":rand", 0, 5),
        (try_begin),
          (eq, ":rand", 0),
          (troop_add_item, "trp_player", "itm_addon_mail7", 0),
          (display_message, "@You get an expensive mail.", 0xFF0000),
        (else_try),
          (eq, ":rand", 1),
          (troop_add_item, "trp_player", "itm_addon_mail4", 0), #berserker
          (display_message, "@You get an expensive mail.", 0xFF0000),
        (else_try),
          (eq, ":rand", 2),
          (troop_add_item, "trp_player", "itm_mail_shirt_10", 0),
          (display_message, "@You get an expensive mail shirt.", 0xFF0000),
        (else_try),
          (troop_add_item, "trp_player", "itm_viking_noblehelm2", 0),
          (display_message, "@You get an expensive helmet.", 0xFF0000),
        (try_end),
      (else_try),
        (display_message,"str_no_money"),
      (try_end),
  ]],

["addon_mail7", "Wolf Lorica",
["addon_mail4", "Bear Byrnie",
["mail_shirt_10", "Elite Briton Byrnie"
 
Back
Top Bottom