Jump to content

anubhait

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by anubhait

  1. Title says it all. I have run into one particular mission where no floor is shown in the ground combat. The decorations are there but floor is pure black as if nothing is there. Would like to check which map is in use when this happens.
  2. ----renaming things---- Generally try to not do it. For example weapon names are tied by code logic to units animations - e.g. assaultshield folder for division smgMK3 is named weapon.assaultshield.division.smgmk3. One folder for every combination of shield and every armor. You do not want to be renaming all that. Not to mention some of those are in Vanilla/XCE. Making it undoable. ----being smart with naming---- I advise you to prepend some strings for research,manufactures,ordinary items,xenopedia etc. So that when you have it all in strings/items you can easily locate it/replace the string without affecting everything else by using batch text manipulation. There are some in use already: airplaine. / airplane.alien. / AV. / ammo. / armour. / building. / CHASSIS. / Items. / ManTech. / POWERPLANT. / Researches. / SoldierRoles. / VEHICLE. / VV. / weapon. I use also xped. (xenopedia). For items.xml "Items." should be used only for non-linked items. Meaning not aircrafts,air weaps,armour,vehicle,vehicle weaps. ----special characters---- You can use special characters in the .xml files via their notations. Sofar seen: &lt; less then < &gt; greater then > &amp; and & &#10; newline \n &#8226; bullet point ----on LibreOffice Calc---- In Tools/Autocorrect option/options turn off automatic correction of two capitalized first letters. Otherwise it will rewrite EExtra to Eextra and it will not work. If in country using "," as decimal separator switch it in settings. It replaced the 0.5 with 0,5 for me. The game considers that zero for aircraftweapons.xml making lightscout fire rate through the roof. ----researches.xml---- If you want research to be locked at the start of the game and it has no requirements just put "NULL" string there as in vanilla game. To lock out researches from vanilla/XCE just put the name and empty fields there. Exception of course exists in the code - if you do that for Research.AV.SIDEWINDER(avalanche,etc.) air weapons the game complains. You have to leave those there ideally with Research.AV.SIDEWINDER/999/Weaponary/NULL ----weapons.xml---- Beware this contains some ss:Type boolean things. If you open this in LibreOffice calc the boolean values are not there. Best to remove all the ss:Type before editing. (game does not care about those it seems). Another Libreoffice tip - in Tools/Autocorrect option/options turn off automatic correction of two capitalized first letters. Otherwise it will rewrite EExtra to Eextra and it will not work. If you are trying to show something in the soldier equipment tab category the name of the said thing must contain one of "grenade/explosive/shield/rocket" strings. Otherwise it will not show. And vice-versa. Weapons with names containing "grenade/explosive/shield/rocket" will not be shown under the weapons tab. Two-handed equipment does not work. Even if you define twoHanded field as 1 it will simply not reserve both hands if it's under equipment tab. (one such example are the current X-Division two handed melee weapons that are under equipment) ----Extra soldier equipment screen categories by Solver---- Take sequipview.lua from Xdivision 1.0.11c Charon's changes,psi,sounds to use them. There are WExtra1,WExtra2,WExtra3,WExtra4, EExtra1,EExtra2,EExtra3. To put something into extra weapon category change both type and inventoryCategory to WExtra1 etc. To put something into extra equipment category change inventoryCategory to EExtra1 etc. (and see above - grenade,explosive,shield,rocket in the name is a must) Do not assign vanilla ballistic weapons to other categories! It messes up the game code logic. It also seems that to unlock new weapon category you have to unlock manufacture for it. If it's just UnlockItem then it does not work. ----Minimal excel style xml both game and LibreOffice Calc copes with---- Looks like this: <?xml version="1.0"?> <?mso-application progid="Excel.Sheet"?> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> <Worksheet ss:Name="shazam"> <Table> <Row> <Cell><Data ss:Type="String">blah</Data></Cell> </Row> </Table> </Worksheet> </Workbook>
  3. Hello Charon,

    would you or the other guys who had created x-division be willing to post update if I clean it up a bit?

    Main thing is the file size. I used ImageMagick to convert all the unit animation png's to indexed colors. The size is about half without anything noticeable on my big monitor. Then I converted those huge 1.5 MB xenopedia images to jpg and they are about third of size. Test played for a bit. No issues anywhere.

    All in all from 6GB to 3GB size is quite a jump I would say.

    (Original game also does not use indexed png's.)

    There should be also some cleanup done. Like move all the extra text files,lists etc into separate folder, remove the empty New Folders  in turkish language that are in few places etc.

    Fix categories for melee weapons as 11c shows them weirdly under MAG,fix swapped autocannon with mauser image etc.

     

    My motivation: I am working on a bit of aircraft and aircraft weapons overhaul mod that would be on top of X-division.

    I really dislike how Sidewinder has short range when real on from 1980 AIM9L has 6km effective range for sure. Not to start commenting on torpedoes compared to for example AMRAAM missiles.

    I have already added ground phased big radar 4x4 building and F-15 fighter craft. I was poking around quite a bit after finishing the game on NG(easy).

     

    As a side note I really dislike how the map packs are stacked on each other. Sometimes the same tile sets are in three different mods. It's kind of stupid in my opinion. Someone should merge them into one big pack if possible.

×
×
  • Create New...