KEMBAR78
Info | PDF | Computers
0% found this document useful (0 votes)
19 views1 page

Info

The document outlines a Lua script intended for a betting system, detailing basic variables such as nextbet, chance, balance, and statistics like wins and losses. It also describes functions for controlling the game process, including stopping the game, delaying execution, placing bets, generating random numbers, and resetting statistics. The script is structured to facilitate automated betting with adjustable parameters and tracking of performance metrics.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Info

The document outlines a Lua script intended for a betting system, detailing basic variables such as nextbet, chance, balance, and statistics like wins and losses. It also describes functions for controlling the game process, including stopping the game, delaying execution, placing bets, generating random numbers, and resetting statistics. The script is structured to facilitate automated betting with adjustable parameters and tracking of performance metrics.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

paste lua script to Scripts folder

-----------------
Basic variables
-----------------
nextbet (double) next rate (changed)
chance (double) chance of winning (changed)
previousbet (double) previous bet (read only)
balance (double) current balance (read only)
currentprofit (double) profit rate (read only)
wins (int) number of wins (read only)
losses (int) number of losses (read only)
Secret (int) drawn number after bet (read only)
bethigh (bool) more true, less false (changed)
win (bool) winning bet true, losing bet false (read only)
lastRain (int) get last rain info

----------------------
Functions and methods
----------------------
stop() stopping the game process (Stop)
sleep(miliseconds) delay in miliseconds
dobet() method called by the program after the bet
math.random(int min, int max) random number
resetseed() (bool) Resets Seed Client
resetstats() (bool) Used to reset all statistics. Except for the
graph, history and profit.

You might also like