Showing posts with label Software. Show all posts
Showing posts with label Software. Show all posts

999doge - dynamic basebet

 

Script basebet dinamis, menyesuaikan dengan streak loss dan streak win. 


Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---


base          = balance / 100000
maxloss       = -10
setloss       = 3
setwin        = 4
stopbalance   = balance * 0.5
targetbalance = balance * 1.5
chance        = 65
ifwin         = 1.512345
ifloss        = 1.621345
c1            = 64.542154
c2            = 65.245143
ip            = 0.00000001
justloss      = 0
justwin       = 0
profit1       = 0
stopwin       = false
stopnow       = false
rebet         = true
baseDB        = base
nextbet       = base
resetstats()

function dobet()

    chance = math.random(c1*100,c2*100)/100
    
    if win then
        justwin += 1
        justloss = 0
        if stopnow then stop() end
        if (profit > profit1+ ip) then
            if stopwin then stop() end
            profit1 = profit
            nextbet = base
        else
            nextbet = previousbet * ifwin
        end
    else
        justloss += 1
        justwin = 0
        nextbet = previousbet * ifloss
    end
    
    nowprofit = profit / (balance - profit) * 100
    
    print("\n\n")
    print("base "..base)
    print("bet L/W "..justloss.."/"..justwin)
    print("profit : "..string.format("%.2f",nowprofit).."%")
    
    if currentstreak <= maxloss then 
        if rebet then
            base = baseDB / 1000
        else 
            stopwin = true  
        end 
    end
    
    if balance < stopbalance then stopnow = true end
    if balance > targetbalance then stop() end
    if (justloss == setloss) then base *= 0.1 end
    if (justwin == setwin) then base = baseDB end
end

999doge - saving basebet for streakwin


Script basebet menyesuaikan balance, minus dari streak loss di simpan, dan di bet saat streak win ke 2

Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

chance  = 49 
div     = 250000
basebet = balance / div
maxbet  = balance * 0.1
maxbal  = balance * 1.1
minbal  = balance * 0.5
resets  = basebet * 10 
profits = 0
sesi    = 0
hibet   = 0
margin  = 0
stopwin = false
nextbet = basebet

function dobet()

    profits += currentprofit
    margin += currentprofit

    if margin >= 0 then
        margin  = 0
        basebet = balance / div
        resets  = basebet * 10
        nextbet = basebet
    end

    if profits > resets then 
        if stopwin then stop() end
        sesi += 1 
        profits = 0
    end
    
    if !win then  
        nextbet = basebet   
    end  

    if (currentstreak == 1) then
        nextbet = math.abs(profits) + (basebet * 2)
    end 
    
    if (nextbet > hibet) then
        hibet = nextbet
    end
    
    if (nextbet > maxbet) then 
        nextbet = basebet 
        resetstats()
    end
    
    if (nextbet < 0) then nextbet = basebet end
    if (balance > maxbal) then stop() end
    if (balance - nextbet < minbal) then stop() end
    
    print("\n\n")
    print("target "..maxbal)
    print("highest bet "..hibet)
    print("margin "..margin)
    print("risk "..profits)
    print("sesi "..sesi)
end

999doge - auto basebet multiplier

 

Script mencatat last chance roll dan menghitung basebet multiplier secara otomatis

 

Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

chance    = 45
base      = 0.0001
nextbet   = base
streakcnt = 0
rec       = {0}
rec10     = {0}
rec10cnt  = 0
rec25     = {0}
rec25cnt  = 0
rec33     = {0}
rec33cnt  = 0
rec50     = {0}
rec50cnt  = 0
rec66     = {0}
rec66cnt  = 0
a         = 0
initcnt   = 0
mult      = 0
maxstreak = 1
resetseed()

--10x function
function add (t)
     local sum = 0
     for i,v in ipairs(t) do
          sum = sum + v
     end
     return sum
end
--5x function

function dobet()

     chance  = 33
     nextbet = base
     bethigh = true
     mult    = 1.55
     initcnt+=1

     --1.5x routine
     if lastBet.roll>66 then
          table.insert(rec66,1,"1")
     else 
          table.insert(rec66,1,"0")
     end
     rec66cnt = 33/((add(rec66)/#rec66)*100)    
     if (rec66cnt)>=maxstreak then 
          chance = 66 
          mult=3.5 
          bethigh=false 
     end 
     table.remove(rec66,31)

     --2x routine
     if lastBet.roll>50 then
          table.insert(rec50,1,"1")
     else 
          table.insert(rec50,1,"0")
     end
     rec50cnt = 50/((add(rec50)/#rec50)*100)
     if (rec50cnt)>=maxstreak then 
          chance = 50 
          mult=2.5 
          bethigh=false 
     end  
     table.remove(rec50,51) 

     --3x routine
     if lastBet.roll>33 then
          table.insert(rec33,1,"1")
     else 
          table.insert(rec33,1,"0")
     end
     rec33cnt = 66/((add(rec33)/#rec33)*100)
     if (rec33cnt)>=maxstreak then
          chance = 33 
          mult=2 
          bethigh=false 
     end 
     table.remove(rec33,67)

     --5x routine
     if lastBet.roll>25 then
          table.insert(rec25,1,"1")
     else 
          table.insert(rec25,1,"0")
     end
     rec25cnt = 75/((add(rec25)/#rec25)*100)    
     if (rec25cnt)>=maxstreak then
          chance = 25 
          mult=1.5 
          bethigh=false 
     end 
     table.remove(rec25,76)

     --10x routine
     if lastBet.roll>10 then
          table.insert(rec10,1,"1")
     else 
          table.insert(rec10,1,"0")
     end
     rec10cnt = 90/((add(rec10)/#rec10)*100)    
     if rec10cnt>=maxstreak then
          chance = 10 
          mult=1.2 
          bethigh=false 
     end 
     table.remove(rec10,91)     

     --bet armount routine
     if win then 
          a       = 0 
          nextbet = base 
     else
          a       = a-currentprofit 
          nextbet = previousbet*mult
     end

     --output
     if initcnt>90 then
          print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
          print("░ 1.5x   ░% "..rec66cnt..".▓█>")
          print("░ 2.0x   ░% "..rec50cnt..".▓█>")
          print("░ 3.0x   ░% "..rec33cnt..".▓█>")
          print("░ 5.0x   ░% "..rec25cnt..".▓█>")
          print("░ 10.0x ░% "..rec10cnt..".▓█>")
     end

     --init and fixes 
     if initcnt<90 then 
          print("░▒▓█ Populating array % "..math.floor(initcnt/90*100).. " █▓▒░") 
          chance  = 45 
          nextbet =0.00000001
     end
     nextbet = math.floor(nextbet*10^8)*0.00000001
     
end

999doge - fixed basebet until minimum chance

 

Script dengan fix basebet hanya merubah chance, sampai dengan chance minimal (chmin) 


Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

basebet = 0.0001 * balance
edge    = 1
basetry = 0.2
target  = 10 -- in percent
marti   = 1
spin    = 0
minus   = 0
profits = 0
los     = 0
losdb   = 9
chmin   = 13.5
chance  = (100-edge)/(basetry + 1)
stopwin = false
bethigh = false
nextbet = basebet
try     = basetry

resetstats()
function dobet()
    spin += 1
    profits += currentprofit
    profitnow = profit / (balance - profit) * 100
    if profitnow > target then
        stop()  
        print("\n\nTARGET "..target.."%\n\n")      
    end
    
    if lastBet.roll < 50 then      
        bethigh = true     
    else     
        bethigh = false       
    end        

    if win then
        if stopwin then stop() end
    end
    if win then
        los     = 0
        marti   = 1
        minus   = 0
        try     = math.random(10,30)/100
        nextbet = basebet + (math.random(0,9999)/1000000000)
    else
        if (chance == chmin) then
            los+=1
            marti = 1.35 
        end
        minus   = try
        try     = minus + (math.random(20,30)/10)
        nextbet = (previousbet * marti) - (math.random(0,9999)/100000000000)
    end
    chance = (100-edge)/(try + 1)
    
    if los > 5 then try = 1 end
    if los > losdb then losdb = los end    
    if chance > 95 then chance = 95 end
    if chance < chmin then chance = chmin end
    if currentstreak < -50 then stopwin = true end
    
    print("")
    print("spin "..spin.."   ( "..string.format("%.2f",profitnow).."% )") 
    print("profits : "..profits)
    print("minus : "..minus)
    print("try : "..try)  
    print("los : "..los.."/"..losdb) 
    print("chance : "..chance) 
end 


     

999doge - fixed basebet, increased per span loss

 

Script dengan fix basebet per span loss, aman untuk balance kecil dan long bet time


Kalau berkenan referal

DiceBot 3.4.11

Source Code


--- script ---

basebet               = 0.00100
basechance            = 90
increasebetEveryLosts = 15 
increasebetBy         = 2
-------------------------------------
chance  = basechance
nextbet = basebet 
co      = (1/basechance)*99
cco     = co
lc1     = 0
lc2     = 0
pp      = 0
sbr     = balance
negs    = 0
lvl     = 1
lvl2    = lvl
bethigh = true
stopwin = false
-------------------------------------
function dobet()
    if win then
        if stopwin then stop() end
        nextbet = basebet
        chance  = basechance
        cco     = co
        lc1     = 0
        lc2     = 0
        lvl     = 1
        sbr     = balance
    else
        negs=sbr-balance
        lc1+=1
        lc2+=1
        pp = basebet*(lc1*(co-1))
        if lc2>=increasebetEveryLosts then
            lvl += 1
            nextbet*=increasebetBy
            cco = ((negs+pp)/nextbet)+1 
            lc2 = 0
        else
            cco+=co
        end
        chance=(1/cco)*99
    end
    if chance < 5 then chance = 5 end
    if lvl > lvl2 then lvl2 = lvl end
    print("\n\n")
    print("count "..lc2.."/"..increasebetEveryLosts)
    print("level "..lvl.."/"..lvl2)
    print("bet "..nextbet)
end 

Tutorial - How to use seutjie dicebot

Download bot dari link ini:



  1. Anda telah mempunyai script.

  2. Masuk ke akun anda menggunakan Dicebot.

  3. Ubah setingan mode Dicebot menjadi Programmer 

    (di tampilan bagian atas Dicebot ) 

  4. Copy script yang anda punya dan masukkan/paste di bagian kanan atas pada bagian code 


     

    (kosongkan kolom sebelum anda memasukkan scrip anda)

  5. Memulai dengan menggunakanan tombol "start" dan menghentikan dengan tombol "stop" pada kolom paling bawah kanan

CARA MINING MENGGUNAKAN CPU DARI POOL EOBOT ( Khusus 2Core/I7/avx2 )


CARA MINING MENGGUNAKAN CPU DARI POOL EOBOT (Khusus 2Core/I7/avx2)

Pada kesempatan kali ini saya akan berbagi "Cara Mining menggunakan Cpu Dari Pool Eobot", hanya dengan bermodal Cpu saja sebenarnya Anda sudah bisa mining.

Link Eobot: EOBOT
Saya menggunakan versi 1.3 (download dulu tools diatas)

Ini scriptnya:
cpuminer-gw64-core2 -a scrypt -o stratum+tcp://scrypt.eobot.com:4444 --userpass eobot.1074016:x = untuk CPU 2 Core

cpuminer-gw64-corei7 -a scrypt -o stratum+tcp://scrypt.eobot.com:4444 --userpass eobot.1074016:x = Untuk CPU I7

Ganti userpass.eobot.1074016 yang tanda orange, ganti dengan user Anda.
Salam Mining Indonesia.

Jika ada pertanyaan silahkan hubungi FB Hafiz

Untuk lebih jelasnya, silahkan buka video tutorial dibawah ini.


CARA MEMBUAT AKUN DI COINOMI



CARA MEMBUAT AKUN DI COINOMI - Coinomi adalah aplikasi Penyimpanan dan pertukaran mata uang digital (Cryptocurrency). Selain untuk menyimpan Koin Kripto, Wallet ini juga bisa digunakan untuk menyimpan Token.

Hallo Bro...

Di artikel ke empat puluh satu ini, Saya akan memberikan Tutorial Cara mendaftar & menggunakan Wallet Coinomi.

Cara mendaftar dan menggunakan Wallet Coinomi

Sebelumnya Anda harus menyiapkan Smartphone Koneksi Internet, Bolpoin, dan Kertas.
Jika sudah menyiapkan alat dan bahan yang diperlukan diatas, silahkan melanjutkan membaca Tutorial ini.
Wallet ini merupakan Wallet yang simpel namun aman, Karena pada saat pembuatan akun tidak memerlukan Email ataupun Nomor Handphone seperti kebanyakan Dompet yang lain.
1. Mendaftar
1. Pertama, Silahkan mendownload aplikasi Coinomi. Jika sudah langsung saja buka aplikasinya.

2. Kedua, Ketika Anda berhasil membuka aplikasinya, maka akan ada ucapan selamat datang. Silahkan pilih "Buat Dompet Baru".


3. Ketiga, Anda akan diberikan Frasa pemulihan. Silahkan Screenshoot, Foto, atau Tulis diatas kertas Frasa pemulihan tersebut dan simpan di tempat yang aman agar tidak hilang.

Jika sudah menyimpan Frasa pemulihan tersebut, Silahkan centang "Saya sudah menyimpan Frasa pemulihan Saya dengan aman" dan pilih "Berikutnya".
Frasa pemulihan ini berfungsi untuk memulihkan Dompet Anda, Jika Frasa pemulihan ini hilang maka Wallet Coinomi Anda sudah tidak bisa di selamatkan.
4. Keempat, Anda akan diberikan Frasa. Silahkan ketuk Frasa yang telah Anda simpan tadi secara urut dari kiri ke kanan. Jika sudah silahkan pilih "Berikutnya".

5. Kelima, Akan muncul Konfirmasi tentang Frasa Pemulihan Anda, Jika dirasa sudah benar Silahkan pilih "Berikutnya".

6. Keenam, Anda akan disuruh memasukkan Kata Sandi. Silahkan tetapkan Kata Sandi dan Konfirmasi Kata Sandi Anda. Jika sudah pilih "Berikutnya".

7. Ketujuh, Akan muncul Ketentuan layanan. Silahkan pilih "Setuju".

8. Kedelapan, Akan muncul berbagai macam Cryptocurrency. Silahkan pilih Cryptocurrency yang akan Anda gunakan saja.

Sampai disini akun Wallet Coinomi Anda sudah berhasil dibuat.
2. Menggunakan
Ketika Anda membuka menu navigasi yang berada di pojok kiri atas halaman, maka Anda akan menemukan menu seperti gambar dibawah ini:


Penjelasan:
1. Disini Anda bisa melakukan penukaran Cryptocurrency dari satu Koin ke Koin yang lain. Setiap penukaran memiliki batas minimal dan biaya.

2. Disini Anda bisa membeli Token yang disarankan oleh Coinomi

3. Disini Anda bisa melihat beberapa Cryptocurrency yang telah Anda pilih sebelummnya. Anda bisa menerima saldo, melihat saldo, dan mengirim saldo.

4. Disini Anda bisa menambah Koin yang Anda tambahkan, Pilihan Koin dari aplikasi Wallet Coinomi ini cukup banyak.

5. Disini Anda bisa menambahkan Token.

Nah, itulah Tutorial mengenai Coinomi. Jika Anda mempunyai pertanyaan atau pengalaman, Silahkan berkomentar di bawah.
Download di sini Coinomi.
Terimakasih.

Kategori

2captcha

Kategori