I don't even know how to open a lua page at the moment :/ Ah nvmm opening with notepad works. God that thing is huge O.O Alright found what I need to change, now I just have to read the manual to figure out how to change it via modbuddy
Edit: Hrm, if I'm reading the pdf correctly (probably not), I need to copypaste the entire AssignStartingPlots.lua into a lua file, and just change these values?
local uran_amt, horse_amt, oil_amt, iron_amt, coal_amt, alum_amt = 4, 4, 4, 6, 7, 8;
if self.resource_setting == 1 then -- Sparse
uran_amt, horse_amt, oil_amt, iron_amt, coal_amt, alum_amt = 2, 4, 4, 4, 5, 5;
elseif self.resource_setting == 3 then -- Abundant
uran_amt, horse_amt, oil_amt, iron_amt, coal_amt, alum_amt = 4, 6, 6, 9, 10, 10;
return uran_amt, horse_amt, oil_amt, iron_amt, coal_amt, alum_amt
EDIT: Awesome, it worked!