SHOW:
|
|
- or go back to the newest paste.
| 1 | --[[ | |
| 2 | 1) Joue un montant moyen aléatoire une chance aléatoire avec un sens aléatoire | |
| 3 | 2) après un nombre de roll moyen (var = boum) aléatoire si on est en perte le | |
| 4 | pari moyen est augmenté de façon +ou- aléatoire (previousbet multiplié par par l'intervalle qmax qmin) | |
| 5 | 3) Si en profit on revient à la base bet | |
| 6 | ]] | |
| 7 | ||
| 8 | --https://bit-exo.com/?ref=pierresert1 | |
| 9 | ||
| 10 | --https://www.bitsler.com/?ref=pierresert1 | |
| 11 | ||
| 12 | --https://bitvest.io?r=100548 | |
| 13 | ||
| 14 | --de base | |
| 15 | enablezz=false | |
| 16 | enablesrc=false | |
| 17 | perte,profitmax=0,0 | |
| 18 | ||
| 19 | --balance=50000 | |
| 20 | ||
| 21 | --------SETTING DE BASE--- | |
| 22 | div=100000000 --unité de base | |
| 23 | bb=10/div --basebet | |
| 24 | target=balance*2 --stop si balance >= target | |
| 25 | limite=0 --stop si balance <= limite | |
| 26 | -------------------------- | |
| 27 | --------SETTING AVANCE---- | |
| 28 | minchance=0.01 | |
| 29 | maxchance=98 | |
| 30 | boum=77 | |
| 31 | qmax=3 --multiplieur max | |
| 32 | qmin=2 --multiplieur min | |
| 33 | -------------------------- | |
| 34 | ||
| 35 | nextbet=bb | |
| 36 | chance=math.random(minchance*10000,maxchance*10000)/10000 | |
| 37 | bethigh=math.random(0,100)%2==0 | |
| 38 | ||
| 39 | function stringA() | |
| 40 | M1="dev contact (telegram = @pmNofirg / [email protected] )" | |
| 41 | M2="this script is FREE if you bought it you got scammed" | |
| 42 | betv=M2 | |
| 43 | print(M1) | |
| 44 | print(M2) | |
| 45 | end | |
| 46 | ||
| 47 | function target_et_limite() | |
| 48 | if (balance-nextbet) < limite or betv==nil then | |
| 49 | print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
| |
| 50 | end | |
| 51 | if balance >= target then | |
| 52 | print("TARGET REACHED GG !!!") stop()
| |
| 53 | end | |
| 54 | end | |
| 55 | ||
| 56 | function simu_printInfo() | |
| 57 | ||
| 58 | print("wagered= " ..wagered)
| |
| 59 | print ("chance= " ..chance)
| |
| 60 | print("profit= " ..profit)
| |
| 61 | print("nextbet= " ..nextbet .." N° " ..bets)
| |
| 62 | end | |
| 63 | ||
| 64 | bestID,badID,pirePERTE,bestPROFIT=0,0,0,0 | |
| 65 | function bestBETid() | |
| 66 | ||
| 67 | if currentprofit >= bestPROFIT then | |
| 68 | bestID=lastBet.id | |
| 69 | bestPROFIT=currentprofit | |
| 70 | end | |
| 71 | ||
| 72 | if currentprofit <= pirePERTE then | |
| 73 | badID=lastBet.id | |
| 74 | pirePERTE=currentprofit | |
| 75 | end | |
| 76 | ||
| 77 | print("PROFIT MAX= " ..bestID)
| |
| 78 | print("PERTE MAX= " ..badID)
| |
| 79 | ||
| 80 | end | |
| 81 | ||
| 82 | ||
| 83 | function dobet() | |
| 84 | ||
| 85 | stringA() | |
| 86 | perte+= currentprofit | |
| 87 | ||
| 88 | --calcul de nextbet---------------------- | |
| 89 | ||
| 90 | if perte > 0 then | |
| 91 | perte,nextbet=0,bb | |
| 92 | end | |
| 93 | ||
| 94 | if math.random(1,boum)==1 then | |
| 95 | print("O---------------------------O BOOOOOOOOOOOOUM !!! O---------------------------O")
| |
| 96 | nextbet=previousbet*math.random(qmin*10000,qmax*10000)/10000 | |
| 97 | --nextbet=previousbet+bb | |
| 98 | end | |
| 99 | ||
| 100 | --minimum bet=bb | |
| 101 | if nextbet < bb then | |
| 102 | nextbet=bb | |
| 103 | end | |
| 104 | ------------------------------------------ | |
| 105 | ||
| 106 | --direction/chance au hazard------------------------------ | |
| 107 | chance=math.random(minchance*10000,maxchance*10000)/10000 | |
| 108 | bethigh=math.random(0,100)%2==0 | |
| 109 | ---------------------------------------------------------- | |
| 110 | ||
| 111 | --simu_printInfo() | |
| 112 | bestBETid() | |
| 113 | target_et_limite() | |
| 114 | ||
| 115 | end --fin dobet |