Roth9 14 Posted December 16, 2017 I want to create a mod to always win in pazaak, but I need some directions first. Can someone tell me what scripts control this mini game? Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 16, 2017 I managed to change so that the game thinks that I won when I lose, but I still lose credits. Can someone at least tell me what script fires when I lose or win credits? Quote Share this post Link to post Share on other sites
Kexikus 995 Posted December 16, 2017 What exactly do you want to do? Do you want to just win every game of Pazaak regardless of what you do? Then I'd just replace the script that starts the Pazaak game with one that directly starts the following conversation. You should be able to find that one by looking at the .dlg files of the Pazaak players. Quote Share this post Link to post Share on other sites
jc2 581 Posted December 16, 2017 I want to create a mod to always win in pazaak, but I need some directions first. Can someone tell me what scripts control this mini game? KOTOR or TSL? Here are two k1 scripts. (not tested might fail fyi) void main() { object oA = GetFirstPC(); GiveGoldToCreature(oA, INSERT NUMBER OF GOLD); } /// compile this script, then save it as JC2_plusgold, now add this to the dlg /// in the script fires section after a win or loss. /// alternatively you could make the enemies deck very easy, and remove the wager /// then add the give gold script. /// there is no way (As far as, I know to force the game to let you win) void main(){ PlayPazaak(10,"JC2_plusgold", 0); } /// if you go this route, make sure you compile the two scripts seperately, /// and place them in the override folder /// also place them in the dlg files, prior the pazaak match starting, /// you will have to delete the original play pazzak script from that dlg file Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 16, 2017 Thank you, I decided to remove the wager, since I just want the dialogues. Also I am editing one by one the pazaak players from K1 since in TSL the game is fair, diferent from the first game where you win (with luck) one game in ten. Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 20, 2017 I am having trouble with some scripts. Can someone tell me the best program to convert ncs to nss? Quote Share this post Link to post Share on other sites
Kexikus 995 Posted December 20, 2017 DeNCS is the only one we have. You can grab it in the link from this post. Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 20, 2017 DeNCS is the only one we have. You can grab it in the link from this post. Just to make sure: It doens't work with all ncs files right? I have been having some trouble since it doenst open some ncs and corrupts some nss. Quote Share this post Link to post Share on other sites
Kexikus 995 Posted December 20, 2017 Just to make sure: It doens't work with all ncs files right? I have been having some trouble since it doenst open some ncs and corrupts some nss. Yes, it doesn't work will all of them. IIRC it can't handle #include commands and recursion. Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 20, 2017 Yes, it doesn't work will all of them. IIRC it can't handle #include commands and recursion. Thanks. It seems that at least Kudos I will have to play without cheats. Quote Share this post Link to post Share on other sites
Roth9 14 Posted December 24, 2017 I finished my mod. Unfortunately, I was unable to change Kudos from Tatooine since I was unable to open his scripts. I also choose to not change the pazaak tournament. Besides these, I changed all players in that evertime you lose, they will treat you as if you had won, I also removed mostly of the bets since they would get your credits anyway. Also, I believe that I made a discovery: in Korriban, you can actually beat definitely Toll Apkar. There is a mistake in one of the scripts that when corrected and you challenge him after 10 wins, he will bet cards and after he loses, he will go away. Maybe you guys already knew, but to me this is new. Quote Share this post Link to post Share on other sites
Mephiles550 227 Posted December 25, 2017 Also, I believe that I made a discovery: in Korriban, you can actually beat definitely Toll Apkar. There is a mistake in one of the scripts that when corrected and you challenge him after 10 wins, he will bet cards and after he loses, he will go away. Maybe you guys already knew, but to me this is new. I didn't know that, but I knew something similar happened on the Yavin station where, if you beat Suvam 10 times, he gives you a small permanent discount on items. Quote Share this post Link to post Share on other sites
Eauxps I. Fourgott 81 Posted December 25, 2017 I didn't know that, but I knew something similar happened on the Yavin station where, if you beat Suvam 10 times, he gives you a small permanent discount on items. I think the same sort of thing happens with most of the Pazaak players in the game - it's just not seen as much as in K2 since the threshold is higher and Pazaak is less fun in K1. For instance, I know for a fact that on Tatooine, Furko will stop playing for money after you beat his highest level, and Kudos will give you a Sigil crystal after 10 wins. Quote Share this post Link to post Share on other sites