I'm wanting to make tokens to gold value 3-1. So, exchanging 3 tokens gives you 1 gold coin. Where would I set this? I looked in LadyLuck.cs. It's in there somewhere i'm sure, just don't know where.
 
It's in the LuckLadyExchangeGump starting on line 405.
But... any changes you make to exchange 3 tokens for 1 gold, is also going to change it to buying 3 tokens for 1 gold as well if I'm not mistaken.
Line 422 is the token amount. Change the "1" to "3" for 3 tokens.
C#:
                AddTextEntry(135, 131, 90, 20, 2113, 1, "1");
Line 450 is the Gold amount for buying tokens
C#:
                        if ( iCost > 1000000 )
Change the 1000000 to 1 for 1 Gold
 
Back