Pages (5):    1 2 3 4 5
k3iroll   01-25-2015, 01:42 PM
#41
Rubber   01-25-2015, 03:22 PM
#42
Rubber   01-26-2015, 02:33 AM
#43
Ok, I figured it out. If anybody wants the bot to donate more often while waiting for camps to fill just add this code to script


Code:
;Donate Settings
Global $iDonateCounter = 0 ; Donate counter, when reaches $DONATEATCOUNT, it will donate
Global $DONATEATCOUNT = 2 ; Run DonateCC() after this amount of times before actually donate

and this under  general functions

If _Sleep(30000) Then ExitLoop (2)


Code:
If $iDonateCounter > $DONATEATCOUNT Then ; This is prevent from donating all the time which isn't needed anyway
DonateCC()
If _Sleep(1000) Or $RunState = False Then ExitLoop (2)
$iDonateCounter = 0
Endif
$iDonateCounter = $iDonateCounter + 1



This feature donates every 2 min, and I only tested it in this version of the bot.
Pages (5):    1 2 3 4 5
  
Users browsing this thread: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.