I've heard a lot of ppl that tell me that they dont have enough gold or dont make enough gold. Well found a real cheesy way to fix that but this procedure involves editing a game file so create a backup copy of the file before proceeding. Use a text editor to edit the "script.slc" file in the "\ctp_data\default\gamedata" folder. Add the following lines to the file.
trigger 'DOR_T_Give_Gold' when (IsHumanPlayer(g.player) && (player.1.gold<=200000))
{
AddGold(g.player,1000000);
}
And there you have it, 1000000 gold. Easy as that.
I did it on my friend's PC and it worked fine so happy spendings.
Spec.
trigger 'DOR_T_Give_Gold' when (IsHumanPlayer(g.player) && (player.1.gold<=200000))
{
AddGold(g.player,1000000);
}
And there you have it, 1000000 gold. Easy as that.
I did it on my friend's PC and it worked fine so happy spendings.
Spec.
Comment