PDA

View Full Version : Casino Dice



douglassrs
02-10-2016, 01:32 PM
Hey there,

Yesterday I found a Casino script and fixed it to work with the new 10.90 depot boxes...

It's working great except for some win issues xD, since the dice is random(1,6) for some reason the user was winning a lot and I lost 500k :P, I am looking for a way to decrease the user chances, I already implemented something like this:

If the user says low I set the dice numbers to this:

DiceNumbers = {4, 6, 5, 2, 5, 4, 1, 3, 5, 6}

if the user says high I set the dice numbers to this:

DiceNumbers = {2, 1, 5, 3, 1, 6, 1, 3, 4, 2}

then I just randomize this array with

DiceIndex = random(1,10)

and I select by the Index with: Result = DiceNumbers[DiceIndex]

Is there a better way to do what I want or am I being too unfair?

Thanks

The_Miguelito
02-10-2016, 02:42 PM
Is this the Chuitox Script?

douglassrs
02-10-2016, 03:07 PM
Yes it is.

eldera
02-10-2016, 07:58 PM
This is cheating. Not cool.

douglassrs
02-10-2016, 08:14 PM
I guess all the dice scripts do that because it's imposible to win :(

kamilqq
02-10-2016, 08:36 PM
I guess all the dice scripts do that because it's imposible to win :(

Thats why noone play dicers who doesnt use dice. Only idiots plays.

Proteus
02-10-2016, 10:46 PM
I guess all the dice scripts do that because it's imposible to win :(

It's not impossible to win, it's strictly odds.

A random number between 1 and 6 is just that, a random number. The Dice used in RL tibia are the same odds as the script you're using. When I used a real die on RL tibia, I'd have days where I lost money as well. What you're doing is gambling, not just for the player, but for the dealer as well (you're the dealer).
The odds are always in the dealers favor, but doesn't mean that its a guaranteed win. For this reason, people would often do payouts of 80%/90%. It helped balance the losing odds a bit.

By adding cheating into the script, now you're discouraging people to play with you. You may profit well 1 day, but the days following you'll be making scraps at best. Honesty is the best, you build a regular customer base, word of mouth gets around of the 'safe' dicer, and you profits go up from people taking riskier bets.

Just my two cents :o

douglassrs
02-10-2016, 10:56 PM
Hmmm, that's it then, thanks for the tips.

douglassrs
02-10-2016, 10:56 PM
Also, can you tell me how much you profit from this bot?

eldera
02-11-2016, 12:54 AM
It's not impossible to win, it's strictly odds.

A random number between 1 and 6 is just that, a random number. The Dice used in RL tibia are the same odds as the script you're using. When I used a real die on RL tibia, I'd have days where I lost money as well. What you're doing is gambling, not just for the player, but for the dealer as well (you're the dealer).
The odds are always in the dealers favor, but doesn't mean that its a guaranteed win. For this reason, people would often do payouts of 80%/90%. It helped balance the losing odds a bit.

By adding cheating into the script, now you're discouraging people to play with you. You may profit well 1 day, but the days following you'll be making scraps at best. Honesty is the best, you build a regular customer base, word of mouth gets around of the 'safe' dicer, and you profits go up from people taking riskier bets.

Just my two cents :o

Well said :)

rirawax
05-25-2016, 08:58 PM
How did you fixed for 10.90?

yousefsamy1
10-19-2017, 12:22 AM
site ?