poky1084 / StakeLoader

Contains 3 stake originals game with running Lua scripts
7 stars 2 forks source link

Need help on modifying script #2

Open shutupppp opened 5 months ago

shutupppp commented 5 months ago

Hey there!

I hope you you'd see this Actually this IS NOT that important, BUT what if I want to do auto vault every time (e.g. profit 10 doge) I want the bot to send its 5% of winning to my account vault

I did try these: function vault(amount)

if (win) then vault(amount)

but it seems did not working like how I wanted it. Any suggestion or help for this?

and by the way.. your loader script works wonderfully!

TIA

xazes commented 5 months ago

For me the same. I want bet 25% more when i loose. Hows the lua script for this?

xazes commented 5 months ago

p.s. get it: basebet = 0.13410000 --sets your first bet. target = 5-- set target nextbet = basebet

function dobet() if (win) then print(lastBet.result) nextbet = basebet else nextbet*=1.25 end end