Gauddlike Posted March 26, 2014 Share Posted March 26, 2014 That should work fine. What exactly did you adjust and what values did you use? Quote Link to comment Share on other sites More sharing options...
Sheelin Posted March 26, 2014 Share Posted March 26, 2014 I set the initial amount from 1.5M to 99M dollars then put the base construction cost to 50000$ (1/10 of the game setting) reduced the upkeep of employees also to 1/10 of their initial values raised the chance of new soldiers being woman to 99% reised the chance a soldier will survive unharmed to a crash Quote Link to comment Share on other sites More sharing options...
kabill Posted March 26, 2014 Share Posted March 26, 2014 Best bet would be to reset the values, then replace the changes one at a time, trying to load the game after each one. That will help narrow down whatever the problem is. Looking at the changes you've done, the only one that might be problematic that I can think of is the final one. I assume that the total of chance killed, chance wounded and chance unharmed needs to equal 100. If it doesn't, that could be causing an issue? (Although, if that was the case, I'd expect it to happen when the event happens and not on loading the game. Thought it worth mentioning though.) Quote Link to comment Share on other sites More sharing options...
Sheelin Posted March 27, 2014 Share Posted March 27, 2014 i made sure it was 100. the values i set are: die: 5 harm: 5 unharmed: 90 anyway, i did what you said of course, trying to put back the original values one a time but to no avail. even putting back the original file wasn't working anymore, and i had to make an integrity check of the whole game, which then found 3 corrupted files. Quote Link to comment Share on other sites More sharing options...
dpelectric Posted March 28, 2014 Share Posted March 28, 2014 raised the chance of new soldiers being woman to 99% That would cause any game to crash. In fact, it would cause your sanity to crash Quote Link to comment Share on other sites More sharing options...
Sheelin Posted March 31, 2014 Share Posted March 31, 2014 That would cause any game to crash. In fact, it would cause your sanity to crash lol Quote Link to comment Share on other sites More sharing options...
noirhero Posted April 2, 2014 Share Posted April 2, 2014 So I made mods to gameconfig.xml : I reduced the cost of a new base, increased the size of quarters and changed the aircraft turnaround time to something I think faintly sensible -- I moved refueling time to .75 and dropped rearm time to 45 min. Now, when I hit engage in Air Combat the game refuses to unpause no matter how much I hit the space bar. Which clearly works otherwise... (There were some other changes as well: I changed the weapons and vehicle weapons files a bit: I dropped the burst fire TU values, as well as the LMG-types so as to stop breaking my suspension of disbelief and likewise increased the accuracy a smidge: I know for sure that it takes better shooting that that to simply get through basic; I can't help but feel that professional SF types --who have to complete a far more demanding practical shooting course -- should be even better shots than I had to be to fly helicopters. Additionally, I reduced some costs for researchers, soldiers and and engineers and upped the engineers per workshop values. I don't think those would cause this problem, but what do I know?) Quote Link to comment Share on other sites More sharing options...
Xhaleon Posted April 13, 2014 Share Posted April 13, 2014 Which file controls the size of the soldier stat bars? The bars aren't dynamic and don't adapt to the min/max of soldier generation, so using 100+ AP as a standard causes the whole bar to be filled up all the time. It's one of those LUA script files, isn't it? If it is, I'm not sure which one does what. Quote Link to comment Share on other sites More sharing options...
Gauddlike Posted April 13, 2014 Share Posted April 13, 2014 Each lua file will control the bars on a different screen or part of a screen. You would need find the correct file for each screen that contains a bar and edit each one individually. Quote Link to comment Share on other sites More sharing options...
Xhaleon Posted April 13, 2014 Share Posted April 13, 2014 Ah, right. Looks like sequipview.lua does it. Only thing now is to figure out how xywh is actually calculated... Quote Link to comment Share on other sites More sharing options...
Gauddlike Posted April 13, 2014 Share Posted April 13, 2014 That would only change the bars in the soldier equip screen, not on the ground combat UI or the inventory screen. The x and y are the screen location co-ordinates, h and w are the height and width dimensions as you probably already know. Both of these values are usually related to the screen resolution so that the UI scales with different settings. Adjusting them would be time consuming if you wanted anyone else using a different resolution to yours to be able to use your adjustments. Personally I would just try adjusting the maximum value of the bar but leave the positions alone. That should allow larger values to be displayed without making the bar physically larger. Quote Link to comment Share on other sites More sharing options...
Xhaleon Posted April 13, 2014 Share Posted April 13, 2014 Oh not again I missed the "min" and "max" attributes because they just so happened to be colored the same as my editor's background. Great, missing obvious stuff like this every time. Quote Link to comment Share on other sites More sharing options...
Gauddlike Posted April 13, 2014 Share Posted April 13, 2014 Can't catch everything. Quote Link to comment Share on other sites More sharing options...
BuxRagin Posted April 22, 2014 Share Posted April 22, 2014 Hey there, I was wondering if anyone could direct me to where I can edit the region funding values? I am trying to make a set of settings tweaks for the game that bring it more in line with reality, and having found most everything else I am drawing a blank for where I can edit this. Quote Link to comment Share on other sites More sharing options...
Max_Caine Posted April 22, 2014 Share Posted April 22, 2014 You need to edit the relations score plus the funding modifier, as that's how funding values are calculated. It's in gameconfigs.xml, under "GEOSCAPE FUNDING REGION SETTINGS". Quote Link to comment Share on other sites More sharing options...
BuxRagin Posted April 22, 2014 Share Posted April 22, 2014 Thank you so much, I should have inspected gameconfigs closer. Quote Link to comment Share on other sites More sharing options...
TacticalDragon Posted May 7, 2014 Share Posted May 7, 2014 Hello, I'm adding new weapons to a mod and I want to know how to put new soldier images of soldiers with the weapon and the shield. Right now I was able to add the unit images of the weapons without shield but I can't add the shield weapon locations. Anyone can help me? Quote Link to comment Share on other sites More sharing options...
kabill Posted May 7, 2014 Share Posted May 7, 2014 Caveat: I never actually did this; I'm just going off the existing file structure. Looking at the files, the shield entries have names going weapon.SHIELDTYPE.WEAPONTYPE So I'd assume you need to set up the spectres in files called: weapon.combatshield.YOURWEAPON and weapon.assaultshield.YOURWEAPON Don't know if you need to do anything with the spectres themselves; if you've done this with the non-shielded versions then you probably know more than me about that. Quote Link to comment Share on other sites More sharing options...
TacticalDragon Posted May 7, 2014 Share Posted May 7, 2014 Caveat: I never actually did this; I'm just going off the existing file structure.Looking at the files, the shield entries have names going weapon.SHIELDTYPE.WEAPONTYPE So I'd assume you need to set up the spectres in files called: weapon.combatshield.YOURWEAPON and weapon.assaultshield.YOURWEAPON Don't know if you need to do anything with the spectres themselves; if you've done this with the non-shielded versions then you probably know more than me about that. I already test this without good results I dont know... I'll try adding a specter xml file. Quote Link to comment Share on other sites More sharing options...
ALECOS Posted May 10, 2014 Share Posted May 10, 2014 Hello Im new to the forums and loving the game, However i am just curious as I've been through all the files and looked at the config list, Is there a way for me to tweak the Chinooks drop capacity? i just preferred early in development having more than 8, Unless its hardcoded or something any help would be awesome thanks! Quote Link to comment Share on other sites More sharing options...
Max_Caine Posted May 10, 2014 Share Posted May 10, 2014 You want to check out aircrafts.xml, that's where you can set the number of soliders. If you've got Excel, you'll find it easier to edit. Quote Link to comment Share on other sites More sharing options...
ALECOS Posted May 10, 2014 Share Posted May 10, 2014 what file am i looking at changing though ive been looking through the chinook pard of the XML but i am unsure of which values to change Quote Link to comment Share on other sites More sharing options...
kabill Posted May 10, 2014 Share Posted May 10, 2014 what file am i looking at changing though ive been looking through the chinook pard of the XML but i am unsure of which values to change You want the 'soldiers' column. They're about 1/3 - 1/2 of the way through, I think. Quote Link to comment Share on other sites More sharing options...
ALECOS Posted May 11, 2014 Share Posted May 11, 2014 You want the 'soldiers' column. They're about 1/3 - 1/2 of the way through, I think. sorry to ask again if i dont get it after this ill create a thread or something so i dont bog this down but i found the value i just dont know what to change, the file i found was the Ui_soldierequips/chinook...etc sorry Im new to actually doing XML edits I've only done very basic changes in the past Quote Link to comment Share on other sites More sharing options...
kabill Posted May 11, 2014 Share Posted May 11, 2014 (edited) sorry to ask again if i dont get it after this ill create a thread or something so i dont bog this down but i found the value i just dont know what to change, the file i found was the Ui_soldierequips/chinook...etc sorry Im new to actually doing XML edits I've only done very basic changes in the past Ah, you want to open the file in Excel so that it displays as a table. It will be really obvious then. (If you can't do that for some reason, the line you want is: <Cell ss:Index="14"><Data ss:Type="Number">8</Data></Cell> in the chinook entry. You want to modify the '8' to whatever other value you want.) EDIT: Oh, the thing you're referring to is in the tabulated version as well, so maybe you're already doing that? If so, I can't be more precise than direct you to the 'soldier's column - column 14. Edited May 11, 2014 by kabill Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.