1. stop quoting whole fucking post
2. where did it happen?
Printable View
download newst version.........
Coryms venore gets stuck at depo, it doesnt deposit the items ;( but thanks for sharing anyway :)
Script name: Ultimate Venore Coryms
I try to test this ! but i stock in dp venore char try to open and close backpack everytime
Hello, @Natixs I saw your post that you are new to WB, so im going to be kind with you :D
It's because you didnt change your backpacks. Take a look
http://i.imgur.com/aduxW8Y.png
http://i.imgur.com/xzVE3QM.png
Just use the backpacks that you wish, and that's all.
I use your Liberty Bay Wyrms X2 script, and every one loop on resp character go back to dp, deposit items, not buy potions and come back on resp.. I have checked everything is ok, cap are under 50 to come back, I got alot more.. Where can be a problem? Thanks for answer!
Edit.
Sorted it. Sorry for 'spam' and thanks for good script man!
Action 002 in the section "Edron" in your blessing buyer:
-- [MENTION=28084]desc[/MENTION] Returns blessing cost of your character
-- @returns int
function blessingcost()
if ($level <= 30) then
return 2000
elseif ($level > 30 and $level < 120) then
return 200*($level - 20)
elseif ($level >= 120) then
return 20000
end
end
travel = 2000
bless = blessingcost()*5
total = travel + bless
if (isrange(3, 1)) then
npctalk("hi")
if (total > 0) then
npctalk("deposit all", "yes", "withdraw "..total, "yes", "balance")
else
npctalk("balance")
end
else
gotolabel("inBank", "Edron")
end
On line 12 you're overriding the travel function from Lucas Terra's library which will prevent other scripts from working after this script has been used. A local variable should be used instead.