Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- pig = 6400
- base = balance/pig
- basebet = balance/pig
- nextbet = base
- chance = 49.95
- oldbal = balance
- target = 50000
- bethigh = false
- filthy = false
- old = balance
- oldy = balance
- oldbaly = balance
- myseed = 0
- wage = 0
- resetstats()
- function dobet()
- xol = math.random(1,3)
- if (xol==1) then
- myseed = math.random(7777,9999)
- end
- if (xol==2) then
- myseed = math.random(50000,77777)
- end
- if (xol==3) then
- myseed = math.random(50,99)
- end
- seedclient = (myseed)
- if win then
- wage = wage-1
- else
- wage = wage+1
- end
- if (wage>=(math.random(2,5))) then
- nextbet = previousbet*2
- basebet = nextbet
- wage = 0
- filthy = true
- end
- if (balance>=(oldy+(basebet*(math.random(2,7))))) then
- nextbet = previousbet*2
- basebet = nextbet
- oldy = balance
- end
- if (balance<oldy) then
- oldy = balance
- end
- if balance>=oldbal and (filthy==false) then
- oldbal = balance
- end
- if (balance>=oldbal) and (filthy==true) then
- nextbet = base
- basebet = base
- oldy = balance
- oldbal = balance
- oldbaly = balance
- filthy = false
- end
- if (balance>=(oldbaly+(base*10))) then
- nextbet = base
- basebet = base
- oldy = balance
- oldbal = balance
- filthy = false
- oldbaly = balance
- end
- if (balance>target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement