Thread: Sombre's Mods
View Single Post
  #2  
Old January 24th, 2010, 02:36 PM

pyg pyg is offline
BANNED USER
 
Join Date: Jan 2009
Location: a small farm
Posts: 340
Thanks: 73
Thanked 103 Times in 42 Posts
pyg is on a distinguished road
Default Re: Sombre's Mods

No, it does not contain CBM but it should be compatible with it. I'm working on DMG again. Here is the python that rolls this mod.

Code:
from DMG import D3M

mod = D3M(era=2,
          modname="DMG Sombre World",
          icon = "./sombreworld/dmg_sw.tga",
          packtgas = True,
          tgadir = "./sombreworld/")
mod.add_all_nations()
mod.add_dm(open("Warhammer Skaven.dm", "rb").read())
mod.add_dm(open("Tharoon.dm", "rb").read())
mod.add_dm(open("Arga Dis.dm", "rb").read())
mod.add_dm(open("Warhammer Ogre Kingdoms.dm", "rb").read())
mod.add_dm(open("Warhammer Lizardmen.dm", "rb").read())
mod.add_dm(open("Jomon broken.dm", "rb").read())
mod.add_dm(open("Ulm Reborn.dm", "rb").read())
mod.add_dm(open("Avernum.dm", "rb").read())
print mod

Last edited by pyg; January 24th, 2010 at 02:45 PM..
Reply With Quote