Sign in to follow this  
Roth9

Cheating in Pazaak

Recommended Posts

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?

Share this post


Link to post
Share on other sites

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?

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

I am having trouble with some scripts. Can someone tell me the best program to convert ncs to nss?

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this