My god. Thanks for this. I really wish some of these modders on here actually posted what lines they changed specifically. Such a hassle if using multiple mods with the same file.
I totally agree. I have been trying to add all game fixes (walls have ears etc) into Geralt`s quality of life mod. Then comparing the fix files to the original files in pack0.dzip. then writing down the changes. Example. QOL changes geralt_basic.xml. and the Story Ability fixes changes the same file.
If anyone wants to simplify it even more, all of those `if` lines, could just be replaced with `return DicePoker_Player;`. This is equal to the above without all of the checks, the player always wins.
So you basically have something like:
final function GetWinner() : int { var playerFigure, npcFigure : W2MinigameDicePokerResult; var playerMajor, playerMinor : int; var npcMajor, npcMinor : int;
When I try to use your mod denisko rediko, the mod activation screen on the launcher tells me there are 0 files in it and it's 0 kb in size. I'm on the steam enhanced edition version. What's up with this?
I had the same issue and found the arm wrestling/poker cheat wasn't working. Just edit your own base_scripts file (I assume you already have one and that's why you're trying to use the variant) using Gibbed RED Tools (you can find it on the Nexus):
Drag and drop your current base_scripts.dzip file onto Gibbed.RED.Unpack.exe, then rename folder it creates to "base" (though it can be whatever you want) . Do the same with the base_scripts.dzip from this mod and rename it (for the purposes of this explanation just name it "cheat"). Now go into "cheat\game\minigames" and copy both "dicepoker.ws" and "wristwrestling.ws" to the same location in the "base" folder. Rename the "base" folder back to "base_scripts" and drag that folder onto "Gibbed.RED.Pack.exe" Done
I'm having the same problem. I use Extra Talents as well and want to use this addon with it. unfortunately, i was unable to figure out the red tools guide. Anyone have a guide to get both addons working together?
Can you combine then into one file? I had read that there is a program to do it, but Im low at this and cannot do it myself.
DeniskoRediko wrote: This mod contents all game scripts wich overlaps scripts of other mods.
Try this variant wich contents only wristwrestling.ws script: https://yadi.sk/d/V_ZMw23n3KHWKu It's native witcher-mod (not NMM, install to “%UserProfile%/Documents/Witcher 2/UserContent/”)
FaeSky wrote: When I try to use your mod denisko rediko, the mod activation screen on the launcher tells me there are 0 files in it and it's 0 kb in size. I'm on the steam enhanced edition version. What's up with this?
PyneKone wrote: I had the same issue and found the arm wrestling/poker cheat wasn't working. Just edit your own base_scripts file (I assume you already have one and that's why you're trying to use the variant) using Gibbed RED Tools (you can find it on the Nexus):
Drag and drop your current base_scripts.dzip file onto Gibbed.RED.Unpack.exe, then rename folder it creates to "base" (though it can be whatever you want) . Do the same with the base_scripts.dzip from this mod and rename it (for the purposes of this explanation just name it "cheat"). Now go into "cheat\game\minigames" and copy both "dicepoker.ws" and "wristwrestling.ws" to the same location in the "base" folder. Rename the "base" folder back to "base_scripts" and drag that folder onto "Gibbed.RED.Pack.exe" Done
pixxykilljoy wrote: I'm having the same problem. I use Extra Talents as well and want to use this addon with it. unfortunately, i was unable to figure out the red tools guide. Anyone have a guide to get both addons working together?
Very late response here, but your post still has some interest/activity all these years later, so here we go.
I made a merged player.ws for this mod and EMC. Contains all dark item fixes, arm wrestling and dice poker fixes. For those that think arm wrestling doesn't work... just let yourself lose, and see the magic. You will not lose. If you don't win automatically, there is something wrong with your install or your permissions.
If there is any interest, I will upload it. It is a mod of a mod, so it isn't anything special but it does work.
It's clearly there on readme.txt. The thing is, it's base_scripts.dzip file so it alters that if you have other mods using it like other patches/fixes/mods unless you know how to merge using gibbed w/c I highly doubt. Good luck!
Someone who can help me know what to change in the lines of code to win the Arm Wrestling since when I install the mod it gives an error and the error is removed when I deactivate the mod
Repackaged Dice Poker files into a tiny proper mod. Should cause no conflicts nor degrade game updates like the original did. https://drive.google.com/open?id=1LcUngn-hom4jJEAqowX6IOEQdH63xZi9 I shouldn't have to tell you to read the attached README file. Should probably publish this as its own mod but there's already enough similar mods posted, even granted — they're all broken in one way or another, and this dumpsterfire of a modding community is too depressing.
My friend, your version is fantastic and I very much appreciate you creating this! I'd highly recommend you publish it as your own mod, I know I'd endorse it
I agree with Subject1849. I'm tired of seeing a bunch of mods replacing the entire base_scripts.dzip file when they change only 1-2 files inside it. They should at least have a version of the file separated for those who know how to use Red Tools (like the Toggleable Cat Effect with a Hotkey mod does). This mod is the only mod I know of that alters the dice/wrestling behavior without replacing the base_scripts.dzip file and that on its own is outstanding. You should upload it as a standalone and get the credit and recognition you deserve!
If you have OneDrive or a similar cloud backup like I do you have to go to C:\Users\'YourUsername'\Documents\Witcher 2\Usercontent and copy the 'usercontents' folder to your cloud drives' Documents Witcher 2 folder; usually located here: C:\Users\'YourUsername'\'NameOfCloudStorage'\Withcer 2.
Due to the cloud storage your computer technically has two 'Documents' folders for your Windows user and the Documents folder outside of the Cloud Storage directory has the extracted files that the automatic script runs, so you just need to copy it over to the Documents folder that is located in the Cloud Storage folder.
I'm trying to install this on a Proton version of the game, so my directories all all different. I have a \bin and \CookedPC and \linux. I tried putting the FixDicePoker in \CookedPC as that's where other mod stuff has gone, but I don't see it in the list of mods to enable/disable from the launcher. Has anyone installed with whilst running the game through Proton on Steam?
would've been nice if you added a manual installation guide in the readme file, tried to do it by myself and i had to reinstall my game because it wouldn't open no matter what. My fault but it's just a suggestion so that this doesn't happen with more people
It's very simple, you just need to run once that INSTALL.bat file, it will copy one folder inside your Documents\Witcher 2\usercontent. You can do it manually copying the FixDicePoker folder that you can find inside the zip. But don't bother using it, I've tried it and it didn't work at all.
113 comments
if ( playerFigure > npcFigure ) return DicePoker_Player;
if ( playerFigure < npcFigure ) return DicePoker_NPC;
if ( playerMajor > npcMajor ) return DicePoker_Player;
if ( playerMajor < npcMajor ) return DicePoker_NPC;
if ( playerMinor > npcMinor ) return DicePoker_Player;
if ( playerMinor < npcMinor ) return DicePoker_NPC;
to
if ( playerFigure > npcFigure ) return DicePoker_Player;
if ( playerFigure < npcFigure ) return DicePoker_Player;
if ( playerMajor > npcMajor ) return DicePoker_Player;
if ( playerMajor < npcMajor ) return DicePoker_Player;
if ( playerMinor > npcMinor ) return DicePoker_Player;
if ( playerMinor < npcMinor ) return DicePoker_Player;
If you instead change it to
if ( playerFigure > npcFigure ) return DicePoker_Player;
if ( playerFigure <= npcFigure ) return DicePoker_Player;
if ( playerMajor > npcMajor ) return DicePoker_Player;
if ( playerMajor <= npcMajor ) return DicePoker_Player;
if ( playerMinor > npcMinor ) return DicePoker_Player;
if ( playerMinor <= npcMinor ) return DicePoker_Player;
you will win the ties too.
function GetWinner() change "if ( playerFigure < npcFigure ) return DicePoker_Player;"
Arm Wrestling - base_scripts\game\minigames\wristwrestling.ws
function IsPointerInHotSpot() change to {return true;}
Edit: I still lose a lot, like in the first Witcher game
If anyone wants to simplify it even more, all of those `if` lines, could just be replaced with `return DicePoker_Player;`. This is equal to the above without all of the checks, the player always wins.
So you basically have something like:
final function GetWinner() : int
{
var playerFigure, npcFigure : W2MinigameDicePokerResult;
var playerMajor, playerMinor : int;
var npcMajor, npcMinor : int;
GetPlayerScore( DicePoker_Player, playerFigure, playerMajor, playerMinor );
GetPlayerScore( DicePoker_NPC, npcFigure, npcMajor, npcMinor );
//custom mod below
return DicePoker_Player;
}
Potentially it could be even shorted like below, but I haven't tested it:
final function GetWinner() : int
{
return DicePoker_Player;
}
No offense, but Arm Wrestling fix to always to win seems to me unnecessarily. Its quite easy to win in Arm Wrestling even without this cheat.
https://forums.nexusmods.com/index.php?/topic/1100508-combining-mods/
Mod is awesome, but I have some problem.
Im using extra talents per lvl [http://www.nexusmods.com/witcher2/mods/657] and both are using same file.
Can you combine then into one file?
I had read that there is a program to do it, but Im low at this and cannot do it myself.
Try this variant wich contents only wristwrestling.ws script: https://yadi.sk/d/V_ZMw23n3KHWKu
It's native witcher-mod (not NMM, install to “%UserProfile%/Documents/Witcher 2/UserContent/”)
Just edit your own base_scripts file (I assume you already have one and that's why you're trying to use the variant) using Gibbed RED Tools (you can find it on the Nexus):
Drag and drop your current base_scripts.dzip file onto Gibbed.RED.Unpack.exe, then rename folder it creates to "base" (though it can be whatever you want) .
Do the same with the base_scripts.dzip from this mod and rename it (for the purposes of this explanation just name it "cheat").
Now go into "cheat\game\minigames" and copy both "dicepoker.ws" and "wristwrestling.ws" to the same location in the "base" folder.
Rename the "base" folder back to "base_scripts" and drag that folder onto "Gibbed.RED.Pack.exe"
Done
don't ask me why, i don't know :-(
I made a merged player.ws for this mod and EMC. Contains all dark item fixes, arm wrestling and dice poker fixes. For those that think arm wrestling doesn't work... just let yourself lose, and see the magic. You will not lose. If you don't win automatically, there is something wrong with your install or your permissions.
If there is any interest, I will upload it. It is a mod of a mod, so it isn't anything special but it does work.
Should cause no conflicts nor degrade game updates like the original did.
https://drive.google.com/open?id=1LcUngn-hom4jJEAqowX6IOEQdH63xZi9
I shouldn't have to tell you to read the attached README file.
Should probably publish this as its own mod but there's already enough similar mods posted, even granted — they're all broken in one way or another, and this dumpsterfire of a modding community is too depressing.
Due to the cloud storage your computer technically has two 'Documents' folders for your Windows user and the Documents folder outside of the Cloud Storage directory has the extracted files that the automatic script runs, so you just need to copy it over to the Documents folder that is located in the Cloud Storage folder.
It's very simple, you just need to run once that INSTALL.bat file, it will copy one folder inside your Documents\Witcher 2\usercontent.
You can do it manually copying the FixDicePoker folder that you can find inside the zip. But don't bother using it, I've tried it and it didn't work at all.
I suggest you to use this instead: 3 For 1 Dice Poker Mod at The Witcher 2 Nexus - mods and community