Log in

View Full Version : GOLD Changer FOR OT ONLY!



Anonymous
08-13-2015, 21:14
Many of you I'm sure have played on OT servers that allow you to right click and 'use' a stack of 100 gold to automatically turn it into platinum. Today, with the help of conditional events, we can automatically change that gold while you are on the fly without the need to click or even look at the screen while you are botting.

side note: I used a script that returned me to town at 5000 gold no matter what, so i could deposit it and it would be safe. because botting i would generally be afk. And its a good idea to have a return script, just as a fail safe, if you dont fall under the range that gold needs to be at to 'use' it.

This conditional will auto use your gold by sending a packet any time your gold level reaches 100, 200, 300 etc up to 5000 you can easily modify this conditional to make the number higher or lower depending on your want to go to town. Always use a number rounded to the hundreds, because you cant use a stack of gold less than 100.

You can even modify the packet to 'use' your platinum to change it into crystal coins.

exiva > 82 FF FF 00 00 00 D7 0B 00 00 is the packet to change gold into platinum
exiva > 82 FF FF 00 00 00 DB 0B 00 00 would be the packet to change platinum into crystal


whenever that first slot in your backpack gets to 100 gold/plat exactly it will change in to 1 platinum/crystal respectively. if you have 96 gold in that slot, and pick up 5, you will now have 1 gold in that slot, hence the reason for the multiple levels in the conditional up to 5000.

It is suggested that you set your conditional timer to around 100 to 100, since this is a use packet, you can spam it as fast as the game will let you. As long as your gold is rounded to the hundreds it will change it all to plat quickly. My cavebot timer is set to 300 - 550.

If you want to test if this conditional works rather than wait to pick up an exact amount, wait until you have a couple stacks of gold, and a partial stack. Throw the partial stack on the ground, and watch the magic happen :D Enjoi!

Make sure to comment if this helps you!

[Edit: attaching the script im using in conjunction with this conditional]

Hans Henrik
08-25-2015, 03:40
there's a much better way to do this, you're doing it all wrong
look at the changelog for 22.0:

- Added function exiva useitemwithamount:XX XX,A (will use an item with tile id XX XX only if there is A amount of that item in opened containers)"

Meaning: Conditional Event: 1 = 1 timeout 5000: exiva useitemwithamount: XX XX,100
^ when you have a stack of 100 of item id XX XX (change XX XX with platinum coins or whatever), press "use" on it. and repeat every 5 seconds.
this is actually 1 of my functions :p

there's also an event for this:
$useitemwithamount:XX XX,A$ - will return 0 if you had A of this item, and it clicked on. else will return... not 0 (was it -1?)

meaning condition: $useitemwithamount:XX XX,100$ = 1 timeout 5000
action: exiva stackitems

^ every time it changed XX XX (gold or plat), stack items! :D