yoginyomom
Active Member
Hello all,
I usually just leave my guy on to gamble while I do other things, using the wastemoney.iss script.
Needless to say unwanted attention came my way, I was wondering could anyone help me add some functionality to it??? I want it to be able to have a random wait time in-between clicks a variance of 1-60 seconds. Aswell as a variable 1-2 hour pause, after a time period of between 1-3 hours.
The original script is as follows:
Thanks in advance
I usually just leave my guy on to gamble while I do other things, using the wastemoney.iss script.
Needless to say unwanted attention came my way, I was wondering could anyone help me add some functionality to it??? I want it to be able to have a random wait time in-between clicks a variance of 1-60 seconds. Aswell as a variable 1-2 hour pause, after a time period of between 1-3 hours.
The original script is as follows:
I take out the eq2echo portions as I do not know if this is logged to the server logs that GMs can read, as I noticed it is logged to mine.; Lets waste some money - Trails
; run wastemoney <amount of silver to waste>
function main(waste)
{
declare startmoney int script 0
declare waste int script 0
startmoney:Set[${Math.Calc[(${Me.Platinum}*10000)+${Me.Gold}*100+${Me.Silver}]}]
waste:Set[${Math.Calc[${startmoney}-${waste}]}]
target game
Actor[${Target}]oubleClick
eq2echo Starting with ${startmoney} silver
eq2echo Will stop at ${waste} silver
do
{
EQ2UIPage[mainhud,lotto].Child[button,Lotto.Ticket.Buy]:LeftClick
wait 75
}
while ${Math.Calc[(${Me.Platinum}*10000)+${Me.Gold}*100+${Me.Silver}]}>=${waste}
eq2echo We have wasted enough money.
}
Thanks in advance