Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I have added +WeaponCategories="C4" to the XComGameData.ini in OCWR
I have added these 3 lines in XComWeaponSkinReplacer.ini
+CHANGE_TEMPLATE=(TEMPLATE="TacticalC4", SET_WEAPON_CAT="C4", SET_INVENTORY_SLOT=eInvSlot_SecondaryWeapon)
+CHANGE_TEMPLATE=(TEMPLATE="TacticalX4", SET_WEAPON_CAT="C4", SET_INVENTORY_SLOT=eInvSlot_SecondaryWeapon)
+CHANGE_TEMPLATE=(TEMPLATE="TacticalE4", SET_WEAPON_CAT="C4", SET_INVENTORY_SLOT=eInvSlot_SecondaryWeapon)
And I have added this line to one of my custom classes in the XComClassData.ini
Would you happen to know if there is anything I have done wrong or missed?
Could you explain what line I would need to add to this mods ini file to achieve turning the Tactical X4 item into a secondary weapon.
I have looked through the documentation for WSR but am unsure about which variables need to be added.
By starting a line with ; you're commenting it out so the game never reads it.
I also tried the same but using only base game weapons to test: ;+PROJECTILE_REPLACEMENT=(ACCEPTOR_TEMPLATE=VektorRifle_BM, DONOR_TEMPLATE=Bullpup_CV) also didn't seem to work... Im putting the commands under the "enter your commands bellow" on the ini file. is there something I'm missing maybe? Thanks again for the reply!
I ask because I want the ammo from [WOTC] Cut Content Ammo to look like Cut Content Ammo by GrimyBunyip. The two are duplicates and can't run together, but I really like how the latter looks, but the former has better rounds overall. Any advice? Thanks!
+Edit_X2WeaponTemplate = (T = "PLASMAGRENADEMK3", P = "Cost",\\
Cost = (ResourceCosts[0] = (ItemTemplateName = "Supplies", Quantity = 20),\\
ResourceCosts[1] = (ItemTemplateName = "AlienAlloy", Quantity = 1),\\
ResourceCosts[2] = (ItemTemplateName = "EleriumDust", Quantity = 1),\\
ArtifactCosts[0] = (ItemTemplateName = "EleriumCore", Quantity = 1)))
Similar to this:
+Edit_X2WeaponTemplate = (T = "Medikit", P = "HideIfResearched", OP = "Remove")
+Edit_X2WeaponTemplate = (T = "NanoMedikit", P = "HideIfResearched", OP = "Remove")
+Edit_X2WeaponTemplate = (T = "NanoMedikit", P = "BaseItem", OP = "Remove")
+Edit_X2WeaponTemplate = (T = "BioMedikit", P = "BaseItem", OP = "Remove")
making them buildable can be done in WSR or Template Master by setting CanBeBuilt to true and adding a cost
Read the documentation, the "WEAPONS_TO_HIDE_KEEP_SCHEMATIC" command does just that.
Alternatively, you can do that with the Item Hider mod using in-game UI.
Yes, add it as a default attachment.
Thanks, Will do.
Use XSkin instead.
+CHANGE_ABILITY_TEMPLATE = (TEMPLATE = "WOTC_APA_AmbushToggle", ICON_IMAGE = "img:///UILibrary_WOTC_APA_Class_Pack.perk_Ambush")
I cant seem to get this work.
Oh for Frith's sake... lol. Yes, that did it. Thanks all. :-D
Try "cannon" not "canon", unless you're changing some religious law.
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Canon_CV, DONOR_TEMPLATE=Canon_CV)
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Canon_MG, DONOR_TEMPLATE=Canon_CV)
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Canon_BM, DONOR_TEMPLATE=Canon_CV)
По идее такая замена должна заменять анимации тоже, не знаю с чего бы звуку пропадать.
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Cannon_CV, DONOR_TEMPLATE=WP_Z6Rotary, HIDE_ACCEPTOR_ATTACHMENTS=True, HIDE_DONOR_TEMPLATE=True, HIDE_DONOR_SCHEMATIC=True)
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Cannon_MG, DONOR_TEMPLATE=WP_Z6Rotary, HIDE_ACCEPTOR_ATTACHMENTS=True, HIDE_DONOR_TEMPLATE=True, HIDE_DONOR_SCHEMATIC=True)
+WEAPON_REPLACEMENT=(ACCEPTOR_TEMPLATE=Cannon_BM, DONOR_TEMPLATE=WP_Z6Rotary, HIDE_ACCEPTOR_ATTACHMENTS=True, HIDE_DONOR_TEMPLATE=True, HIDE_DONOR_SCHEMATIC=True)
+WEAPONS_TO_HIDE=WP_Z6Rotary_MG
+WEAPONS_TO_HIDE=WP_Z6Rotary_BM
Anything I'm missing here, or any other ways to approach this? Thanks. (again!)
(testing these on a fresh debug cheat campaign, in case that affects anything)
Here's what I'm doing:
+CHANGE_TEMPLATE=(TEMPLATE=WP_GethSpitfire, SET_CAN_BE_BUILT=1, SET_STARTING_ITEM=0, HIDE_IF_PURCHASED=Cannon_MG, CHANGE_REQUIREMENTS=true, RESOURCE_COSTS[0]=(costs here))
+CHANGE_TEMPLATE=(TEMPLATE=WP_GethSpitfire_MG, SET_CAN_BE_BUILT=1, SET_STARTING_ITEM=0, HIDE_IF_PURCHASED=Cannon_BM, CHANGE_REQUIREMENTS=true, REQUIREMENTS=(RequiredTechs[0]=GaussWeapons), RESOURCE_COSTS[0]=(costs here))
+CHANGE_TEMPLATE=(TEMPLATE=WP_GethSpitfire_BM, SET_CAN_BE_BUILT=1, SET_STARTING_ITEM=0, CHANGE_REQUIREMENTS=true, REQUIREMENTS=(RequiredTechs[0]=HeavyPlasma), RESOURCE_COSTS[0]=(costs here))
So that's where you got the syntax from. Very weird. The fact that it's in the documentation indicates that this functionality was present in the mod at some point. But I don't see it in the mod project for Weapon Skin Replacer. Very, very weird. Updated the doc, thanks.