Jump to content
⚠ Known Issue: Media on User Profiles ×

menyalin

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by menyalin

  1. Unlike others, there is no calls for that ability in quest files, neither in scripts, so it completely unobtainable without additional modding or console using. Personally, i added that ability to Geralt on the start of the game. Warked for me on EE, but may be i edited some other script, can't remember. I edited several scripts for my playthrough, implementing parts of other mods and fixes.
  2. Strange. As i recall, i got it on Roche patch in second chapter. After beating Burton, may be. 3) \game\1_act1\q109_assassination.w2phase - story_s22 ("Child of the Night", Loredo assassination, Roche path) - can't gain it even with max stealth approach. Failed to find apropriate code in game scripts either. 6) \game\2_act2\sq201_arena.w2phase - story_s6 ("Battle Seasoned", arena fights, second act, Roche path) - checked, got the ability Updated first post.
  3. The "Battle Seasoned" ability bugged (overpowered). In the pack0.dzip\abilities\geralt_basic.xml: <ability name="story_s6_1" > <endurance_combat_regen mult="false" always_random="false" min="1.05" max="1.05"/> Must be "mult="true"". Also: \game\3_act3\q305_dagger.w2phase - story_s29, "David", checked, gained for killing elemntal which guards philippa's dagger in "The Spellbreaker" quest.
  4. You are welcome. And thank you for report. Also: \game\2_act2\q209i_defending_vergen.w2phase - story_s6 ("Battle Seasoned", Vergen defence, Iorveth path) - checked, ability gained \game\3_act3\sq305_handwrestling.w2phase - story_s17 ("Healthy Diet", Mighty Numa in third act) - checked, gained for drinking anabolics during armwrestling quest
  5. \game\2_act2\sq206i_fistfight.w2phase - story_s4 ("Invincible" ability, fistfighting in second act, Iorveth path) Checked, ability gained.
  6. I think i found the cause why some story abilities (Half-Pirouette, Invincible and some others) don't apply to player correctly. It's because function mismatch in game scripting. There is two quest functions for adding abilities in "base_scripts.dzip/game/quests/quest_functions.ws": "QAddAbilityToPlayer" and "QAddStoryAbilityToPlayer". For adding story abilities MUST be used "QAddStoryAbilityToPlayer" (because of "_1" adding to ability name needed) but in some quests used "QAddAbilityToPlayer" instead, so adding that current ability just don't work. If you want to verify this, look, for examle, in two files: 1) pack0.dzip/game/1_act1/q101_landing.w2phase - it's about first act landing and going under Triss' shield 2) pack0.dzip/game/1_act1/q106_rishon.w2phase - it's about fight with Letho in first act Open these files with some text editor (i used Notepad++) and search for string "story_s". You will find string "story_s5" (it's "Cover") in first file close to "QAddStoryAbilityToPlayer" function call (we know, that it's working) and "story_s25" (it's "Half-Pirouette") in second file close to "QAddAbilityToPlayer" (we know, that it's NOT working). So, i fixed the problem by changing the "QAddAbilityToPlayer" into: quest function QAddAbilityToPlayer(abilityName : name) { if(!thePlayer.GetCharacterStats().HasAbility(abilityName)) { thePlayer.GetCharacterStats().AddAbility(abilityName); } if (StrLeft(NameToString(abilityName), 5) == "story") { QAddStoryAbilityToPlayer(NameToString(abilityName)); } } And after this fix "Half-Pirouette" began adding to character after fight with Letho in first act. I didn't test this farther for now, so those who willing may test it themself and share the results here. If someone want make mod for that - do it, i am lazy for this. PS For unpacking and packing .dzip files (CookedPC folder) use Gibbed RED Tools (download it from nexusmods.com). For applying fix you need to unpack base_scripts.dzip, edit quest_functions.ws script, save it, pack base_script back and replace old .dzip file with new one. PPS Other files with possible broken ability addings (al in the pack0.dzip): 1) \game\2_act2\sq206i_fistfight.w2phase - story_s4 ("Invincible" ability, fistfighting in second act, Iorveth path) 2) \game\2_act2\sq206r_fistfight.w2phase - same as above but Roche path 3) \game\1_act1\q109_assassination.w2phase - story_s22 ("Child of the Night", Loredo assassination, Roche path) 4) \game\2_act2\q209i_defending_vergen.w2phase - story_s6 ("Battle Seasoned", Vergen defence, Iorveth path) 5) \game\3_act3\q305_dagger.w2phase - story_s29 ("David", some third act quest) 6) \game\2_act2\sq201_arena.w2phase - story_s6 ("Battle Seasoned", arena fights, second act, Roche path) 7) \game\3_act3\sq305_handwrestling.w2phase - story_s17 ("Healthy Diet", Mighty Numa in third act) PPPS Story abilities defined in pack0.dzip/abilities/geralt_basic.xml. Thay all (except dialog ones) have name like "story_s[some_number]_1". PPPPS Sorry for bad endlish. Im russian and not native english speaker. UPDATE Completed game for both pathes, got almost all broken abilities (except "Child of the Night" in first chapter, see below for others). Found only one new bug (but major one) with overpowered "Battle Seasoned" ability. Howtofix: In the pack0.dzip\abilities\geralt_basic.xml: <ability name="story_s6_1" > <endurance_combat_regen mult="false" always_random="false" min="1.05" max="1.05"/> Must be "mult="true"". Thanks for reports. :smile: Now thinking about making completed mod for nexus. Will be good to do it not by whole dzip-archive, but with cmd-file and Gibbed Tools, for changing only needed files in archive and therefore better compatibility with other mods. Will be good if someone help to make readable and grammatically correct description in english.
×
×
  • Create New...