Thread: Mods?
View Single Post
  #18  
Old 09-27-2008, 01:08 PM
pkt-zer0 pkt-zer0 is offline
Approved Member
 
Join Date: Aug 2008
Posts: 37
Default

Quote:
Originally Posted by nmi576 View Post
Can someone please make a mod that shows the estimated number of enemy troops? This is mainly for Scouting lvl1&2 when you can only see 'lots' 'horde' 'few' etc.
These were included in the HoM&M3 manual (e.g. 'few' was 1-4, 'several' 5-9, 'pack' 10-19 etc.) but I can't find the same info for King's Bounty.
I suppose there is a file somewhere in one of the .kfs archives you can find and modify.
Thanks!
From armygen.lua:

if count < 10 then return "<label=army_troop_few>" end
if count < 20 then return "<label=army_troop_some>" end
if count < 50 then return "<label=army_troop_pack>" end
if count < 100 then return "<label=army_troop_lots>" end
if count < 250 then return "<label=army_troop_horde>" end
if count < 1000 then return "<label=army_troop_huge>" end
return "<label=army_troop_legion>"



Modify eng_windows_small.lng accordingly.
Reply With Quote