Jump to content

Wolfgeist451

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Wolfgeist451

  1. In the meantime, you may want to check out a mod called 'Cheat vest', does it for me... :)
  2. If you don't want to wait for a mod, here's a 'do it yourself' tip. In your game directory fin the following file : DefaultGameData_CharacterStats.ini It will be in .../XCOM2/XComGame/Config. Open the file with any clean text editor and change a few values right in the first paragraph. These are the basic starting stats for all your recruits. HP, aim, defense, armor, etc. This should give your guys an early advantage :)
  3. Hi, can anyone add more action slots in the ui... (Tactical UI) it seems to be capped at fifteen, and my modded psi op, with grapple, wraith, all the psi abilities and the modded ones (teleport, serial, etc) i just get over fifteen and can no longer select some of the last ones. If the ui could just let me have it all... Help please! Thanks!
  4. I use this (in file DefaultClassData.ini), replace approriate spot in the psi class with : ; sergeantSoldierRanks=( aAbilityTree=( (AbilityName="SoulSteal", ApplyToWeaponSlot=eInvSlot_SecondaryWeapon), \\(AbilityName="Teleport") \\ ), \\aStatProgression=((StatType=eStat_Offense,StatAmount=10), (StatType=eStat_HP,StatAmount=1), (StatType=eStat_PsiOffense,StatAmount=25), (StatType=eStat_Strength,StatAmount=1), (StatType=eStat_Hacking,StatAmount=50), (StatType=eStat_CombatSims,StatAmount=1)),\\) Important part : (AbilityName="Teleport"). That's it.
  5. a note for Sir_Toejam, if you care : (Pre update 3) Adding shot_stun to any weapon (other than the arc thrower) allows you to stun (click the button, target the alien) but the stun ALWAYS fail. That's because the code that calculates stun success actually checks if you have the arc thrower on you (for some obscure reason i haven't figured out...). As for your request Eb... its well beyond my meager abilities. Sorry.
  6. I suppose the title says it all... I would love to replace one of the lesser used psi powers with a stun psi power, like replacing panic or the one next to it in the tree, with the ability to psionicly stun an enemy. I mean, you can mind control but not stun (or gently put to sleep...)? Any modding god out there with the urge to make a file that fits into ToolBok (V1.0) to do that? (looks up to the sky in hope... with puppy eyes :)
  7. [Looks to his feet in shame] Forget the above post (tried to deleted it), I was wrong about 07 jump... happens there is another return false that just happens to be exactly 74 bytes later.
  8. About 07 as a jump to instruction I've got a case where... well, see for yourself : 4a 16 07 where 07 being the jump function... 4a == 74 in decimal and 74 bytes later I got the 04 28 (return False) that I was expecting for the code : function bool CanBeSold(int iItem) { local TItem kItem; kItem = Item(iItem); // End:0x8c Loop:False if(kItem.iCategory == 1 || (kItem.iCategory == 2) || (kItem.iCategory == 3)) This "If" is the jump function I speak of { return false; This is the return false 74 bytes later in the bytecode. } // End:0xd4 Loop:False if(iItem == 192 || (iItem == 135) || (iItem == 133) || (iItem == 134)) { return false; } return m_arrItems[iItem].iCash != -1; } So, it seems to me like the length of the jump (jump to a destination inside the function), preceded the 07 instruction. (apologies, I don't know how to paste stuff properly... :( )
  9. Hi Daemonjax, thanks for all your work on this! I got to run the modmaker on a copy of the files you included as an exemple. But the installer... all I get is : :ERRORLEVEL5 echo One or more of the upk files listed could not be found in your "...\XComGame\CookedPCConsole" folder. echo Most likely the ^<XCOM^> tag in "config\config.xml" file does not point to your main xcom game folder. goto END I'm pretty sure it is pointing in the right spot but before I go on searching I was wondering... is there more than XComGame.upk required? (Its the only one I unpacked, decompressed) Thx P.S. About the 'Java not recognized', I had to fix the PATH in environnment variables on Win7... dunno why installing Java didn't do that or if its an issue with Windows. This might help kill that discussion from this thread :) http://java.com/en/download/help/path.xml
×
×
  • Create New...