Malmis
07-07-2007, 22:43
Webber says: this is outdated!
I'll show you the script I use to deposit gold and platinum coins to the bank. I believe I found it in a Liberty Bay rotworms script... I don't remember who created the first script, but I believe it was just a gold changer, I think I edited it to deposit. If you are or you believe you know who created that script, please tell me se he or she may get the credits they deserve.
First off you need to move to the bank, I usually do like this:
move x,y,z
waitX 1
move x,y,z
because then it always starts in the right position, sometimes I have seen the bot stop a sqaure away, possibly because of too fast execution or lag.
Then you use this code, just edit it with the right details, explanation is at the end of the post.
:Deposit Gold
sayMessage hi
waitX 1
IfTrue ($lastmsg$#string=#-here insert the wait message, replace your charactername with $charactername$-) Goto $nlineoflabel:wait$
IfTrue ($lastmsg$#string=#-insert the "hello" message from th NPC, replace your charactername with $charactername$-) Goto $nlineoflabel:deposit$
:wait
waitX 4
IfTrue ($lastmsg$#string=#-insert the good bye message-) Goto $nlineoflabel:Deposit Gold$
IfTrue ($lastmsg$#string=#-insert the "hello" message from th NPC, replace your charactername with $charactername$-) Goto $nlineoflabel:deposit$
gotoScriptLine $nlineoflabel:wait$
:deposit
waitX 3
sayMessage deposit -explanation further down in post-
waitX 2
sayMessage yes
waitX 1
sayMessage bye
When you say "hi" while someone else talks to the NPC he or she will give you a message, put that here
This is the greeting message when you say "hi" to the NPC and it's your turn
This is the good bye message from the NPC, useful because sometimes you wont get the "waiting" message
To deposit just gold write:
$countitems D7 0B$ but if you have both platinum and gold coins use:
$numericalexp:{$countitems:DB 0B$00}+{$countitems:D7 0B$}$ (explanation in this thread (http://www.blackdtools.net/showthread.php?t=6961)).
I hope this helps. :)
I'll show you the script I use to deposit gold and platinum coins to the bank. I believe I found it in a Liberty Bay rotworms script... I don't remember who created the first script, but I believe it was just a gold changer, I think I edited it to deposit. If you are or you believe you know who created that script, please tell me se he or she may get the credits they deserve.
First off you need to move to the bank, I usually do like this:
move x,y,z
waitX 1
move x,y,z
because then it always starts in the right position, sometimes I have seen the bot stop a sqaure away, possibly because of too fast execution or lag.
Then you use this code, just edit it with the right details, explanation is at the end of the post.
:Deposit Gold
sayMessage hi
waitX 1
IfTrue ($lastmsg$#string=#-here insert the wait message, replace your charactername with $charactername$-) Goto $nlineoflabel:wait$
IfTrue ($lastmsg$#string=#-insert the "hello" message from th NPC, replace your charactername with $charactername$-) Goto $nlineoflabel:deposit$
:wait
waitX 4
IfTrue ($lastmsg$#string=#-insert the good bye message-) Goto $nlineoflabel:Deposit Gold$
IfTrue ($lastmsg$#string=#-insert the "hello" message from th NPC, replace your charactername with $charactername$-) Goto $nlineoflabel:deposit$
gotoScriptLine $nlineoflabel:wait$
:deposit
waitX 3
sayMessage deposit -explanation further down in post-
waitX 2
sayMessage yes
waitX 1
sayMessage bye
When you say "hi" while someone else talks to the NPC he or she will give you a message, put that here
This is the greeting message when you say "hi" to the NPC and it's your turn
This is the good bye message from the NPC, useful because sometimes you wont get the "waiting" message
To deposit just gold write:
$countitems D7 0B$ but if you have both platinum and gold coins use:
$numericalexp:{$countitems:DB 0B$00}+{$countitems:D7 0B$}$ (explanation in this thread (http://www.blackdtools.net/showthread.php?t=6961)).
I hope this helps. :)