The forum is a good platform for asking or offering help with programmer mode scripts
LUA Scripts
-- I tried my best so far!! ;D -- Fixed : 1. if (wagered) >= profittarget then stop(); end 2. if win then nextbet = 0.00000005 3. Displays error => [string "chunk"]: 4: attempt to compare nil with number Added Profit Stop. Original Post: Uploaded by: alano04 Discription: THIS SCRIPT WILL START AT 6.6 CHANCES AND 0.00000005 BET THEN SUNDDENLY INCREASE AFTER A LOSE. BETTING DEPENDS ON HOW MUCH THE CHANCES ARE. AUTO RESET SEED. AUTO HIGH AND LOW. DONATE IF U WIN. HEHE 3Hc4tDAZMmdrChSYC9omQ1Ln7xd28yxzZP Seuntjies Note: Your code is redundant as hell. Learn how to use the modulus (%), larger than (>) and smaller than (<) operators. Also, you can use a variable when assigning a value to itself, IE chance=chance*1.1
error: [string "chunk"]:27: attempt to perform arithmetic on global 'betcount' (a nil value)
In the beginning of the script there must be 2 parameters set with a value before script starts. these 2 parameters are missing and that is the reson it cannot run. Set this, and you are good to go: profittarget = 100 -- Set profit you want J=0 betcount=0 chance = 6.6 nextbet = basebet function dobet()
--add this before function dobet() J=0 betcount=0 function dobet()
this is not working. busted after some time