Well, I have a little problem with Neverwinter Nights 2. I can't level up my main character because when the game show the skills screen, the button "Next" to proceed with the leveling up is disabled, because all my skills are set to 99 and the only way to make the button work is set the skills points to 0.
If I try to add more points to any skill its futile. But If I press the Recomended button, the skill points decrease by 8. But Isn't enough. There's 60 skill points left, and the next button is disabled.
So I searched with Tsearch the part of the code of the game who substract from my skill points when I press the recomended button:
Tsearch stopped at the sub at 0081fa3a. I need to hack that sub so instead of substracting 8 it sets to 0 the skill points. I tried a lot of replacements for that sub, but no luck. Game crashes or simply substracts 8 from my skill points.
Can anyone, please, tell me how I can achieve to set to 0 the skill points everytime I press the Recomended button?.
Thanks in advance!!!.
Whipon.
If I try to add more points to any skill its futile. But If I press the Recomended button, the skill points decrease by 8. But Isn't enough. There's 60 skill points left, and the next button is disabled.
So I searched with Tsearch the part of the code of the game who substract from my skill points when I press the recomended button:
Code:
0081fa3a 297E5C sub [esi+0x5C],edi 0081fa3d 837C242C00 cmp dword ptr [esp+0x2C],0x0 0081fa42 748C je short 0x0081F9D0 0081fa44 8B7C242C mov edi,[esp+0x2C] 0081fa48 53 push ebx 0081fa49 8BCF mov ecx,edi 0081fa4b E890950100 call 0x00838FE0 0081fa50 0401 add al,0x1 0081fa52 8BCF mov ecx,edi 0081fa54 50 push eax 0081fa55 53 push ebx
Can anyone, please, tell me how I can achieve to set to 0 the skill points everytime I press the Recomended button?.
Thanks in advance!!!.
Whipon.
it has a proper memory viewer where you can dissemble instructions
Comment