Help with the wastemoney script please.

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:


; 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}]:DoubleClick

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.
}
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.


Thanks in advance
 

Ronin

Active Member
It would be rather simple addition, so you should take the chance and learn LavishScript ;)

//Ronin
 

Amadeus

The Maestro
Staff member
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.
I always find it hysterical that the most paranoid people are the ones that always want to do the most 'afk' things. There is NOTHING you could POSSIBLY do with isxeq2 (or anything else) that is as dangerous as doing "anything" afk. For SOE, afk anything = bad. They don't really care about anything else.
 
Top Bottom