Jump to content

Dilemma with casino limits – looking for alternative solutions please


MikeHancho64

Recommended Posts

I'm trying to set up a high winnings limit casino, but I want to set up some comps at reasonable levels. The casino data appears to be hard wired so that your winnings levels are a ratio of the overall maximum winnings limit.

 

So for my casino if I set the max winnings at say $50,000, that puts each level like so:

 

Small Level: 12500

Big Level: 25000

Huge Level: 37500

 

I would prefer that these levels be a little lower as many folks won't be bothered to gamble that much. I think I have some pretty cool rewards as comps such as some custom armor and a silenced Perforator from FO3 type weapon. So that will hopefully entice some to play.

 

I would like my levels to look more like this:

 

Small Level: 5000

Big Level: 10000

Huge Level: 20000

 

Is this even a possibility to do?

 

I have the following set up and working like everything should. I just don't want to have to set such a low overall winnings level to get the settings that control the comps where I want them. Basically, I don't think a player should be banned at such low levels. They don't do it in Vegas like that I can tell you that. It takes a LOT more winnings, lol.

 

If I can't do what I want above, I don't suppose there would be a way to disable the banning penalty on this casino all together would there?

 

Here's my script: (I lifted it from the Atomic Wrangler and edited it for my setup)

 

scn BucksLuckyCasinoCompsSCRIPT

short SmallFry
short BigWinner
short Whale
int doonce

begin GameMode

if GetCasinoWinningsLevel BucksCasinoData == 1 && SmallFry == 0
	PlaySound GAMESlotsWinSmall
	Player.AddItem BucksCombatBlack 1
	set SmallFry to 1
	ShowMessage BucksLuckyCasinoComps01
elseif GetCasinoWinningsLevel BucksCasinoData == 2 && BigWinner == 0
	PlaySound GAMESlotsWinMed
	Player.AddItem Bucks10mmSMG 1
	set BigWinner to 1
	ShowMessage BucksLuckyCasinoComps02
elseif GetCasinoWinningsLevel BucksCasinoData == 3 && Whale == 0
	PlaySound GAMESlotsWinJackpot
	Player.AddItem BucksPerforator 1
	set Whale to 1
	if doonce == 0
	ShowMessage BucksLuckyCasinoComps03
	endif
endif

end

 

Thanks

Edited by Mike Hancho
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...