I asked something similar a while ago and never got an answer. Let me know if you crack it!
Fab, thanks Nicholas. I contacted the guys at those sites a couple of weeks ago, so I guess I'll just wait and see. Since the current points system will be disrupted if we moved straight to the current site, I'll hold off until next season - perhaps take a vote about what rules and tracking to use based on what OBBLM can support.
So, I'll be holding off on making changes to the core rules for a while yet - and I was perhaps blinded to the functionality of OBBLM by my own ridiculous requirements. If you're using it out of the box, I can see that it's a great tool.
One thing I'd like to look at in the meantime though is making sure I'm doinf the right thing with coding for new rosters. For example I'd like to add the following code - do I do this in game_data_LRB6x.php, or is there a specific hierarchy I need to follow? If anyone fancies checking over my code, I'd be very grateful for that too
Code: Select all
define('T_RACE_KHORNE_DAEMONS', 25);
define('T_RACE_APES_OF_WRATH', 26);
$DEA['Khorne Daemons'] = array (
'other' => array (
'rr_cost' => 70000,
'icon' => 'chaos.png',
'race_id' => T_RACE_KHORNE_DAEMONS, # (Khorne Daemons)
),
'players' => array (
'Pit Fighter' => array (
'ma' => 6,
'st' => 3,
'ag' => 3,
'av' => 8,
'def' => array (5),
'norm' => array ('G', 'P'),
'doub' => array ('A', 'S'),
'qty' => 16,
'cost' => 60000,
'icon' => 'nlineman1an',
'pos_id' => 238,
),
'Bloodletter Daemon' => array (
'ma' => 6,
'st' => 3,
'ag' => 3,
'av' => 7,
'def' => array (75, 53, 103),
'norm' => array ('G', 'A', 'S'),
'doub' => array ('P'),
'qty' => 4,
'cost' => 80000,
'icon' => 'cbeastman1an',
'pos_id' => 239,
),
'Khorne Herald' => array (
'ma' => 6,
'st' => 3,
'ag' => 3,
'av' => 8,
'def' => array (113),
'norm' => array ('G', 'S'),
'doub' => array ('A', 'P'),
'qty' => 2,
'cost' => 70000,
'icon' => 'cwarrior1an',
'pos_id' => 240,
),
'Bloodthirster' => array (
'ma' => 6,
'st' => 5,
'ag' => 1,
'av' => 9,
'def' => array (99, 112, 71, 5, 75, 53, 103),
'norm' => array ('S'),
'doub' => array ('G', 'A', 'P'),
'qty' => 1,
'cost' => 180000,
'icon' => 'minotaur2an',
'pos_id' => 241,
)
)
);
$DEA ['Apes of Wrath'] => array (
'other' => array (
'rr_cost' => 60000,
'icon' => 'amazon.png',
'race_id' => T_RACE_APES_OF_WRATH, # (Apes of Wrath)
),
'players' => array (
'Line Ape' => array (
'ma' => 6,
'st' => 3,
'ag' => 3,
'av' => 7,
'def' => array (73),
'norm' => array ('G'),
'doub' => array ('A', 'S', 'P'),
'qty' => 16,
'cost' => 50000,
'icon' => 'olineman1an',
'pos_id' => 242,
),
'Thrower' => array (
'ma' => 5,
'st' => 3,
'ag' => 3,
'av' => 8,
'def' => array (73, 70, 58),
'norm' => array ('G', 'P'),
'doub' => array ('A', 'S'),
'qty' => 2,
'cost' => 70000,
'icon' => 'othrower1an',
'pos_id' => 243,
),
'Gorilla' => array (
'ma' => 5,
'st' => 4,
'ag' => 2,
'av' => 8,
'def' => array (73, 51, 112),
'norm' => array ('G', 'S'),
'doub' => array ('A', 'P'),
'qty' => 4,
'cost' => 80000,
'icon' => 'oblackorc1an',
'pos_id' => 244,
),
'Runner' => array (
'ma' => 7,
'st' => 3,
'ag' => 3,
'av' => 7,
'def' => array (73, 14),
'norm' => array ('G', 'A'),
'doub' => array ('S', 'P'),
'qty' => 2,
'cost' => 80000,
'icon' => 'oblitzer1an',
'pos_id' => 245,
),
'Silverback' => array (
'ma' => 5,
'st' => 5,
'ag' => 1,
'av' => 9,
'def' => array (99, 73, 51, 112, 54),
'norm' => array ('S'),
'doub' => array ('G','A', 'P'),
'qty' => 1,
'cost' => 130000,
'icon' => 'ogre4an',
'pos_id' => 246,
)
)
);