From what im reading your scripts are good, keep it up.
For that comission part im going to play Tibia again any time soon, so i would love to see some tasker scripts.
Last edited by krille09; 04-01-2016 at 05:13 PM.
Belden's Free Scripts
Belden's Quest Scripts
Bought Lifetime Subscription from Fractal
Bought TeamSpeak 3 Service from Sikkness
Bought Leveling Service from Y2Quakepc2
Confirmed to be working..... its a excellent script to use, one thing i dont like tho is that when your hunting and you loot strong health pots, it puts them with your supply backpack and never deposits anything over your max Hp pots bring so after a few hours i have 30-50 of them in there weighing me down, not a huge deal but if it could be fixed would be nice, not a single other complaint other then that, you have been ontop of your patches and fixes and are doing a excellent job keep it up
Ok neither of the serpent scripts work... I start and they don;t even open a console window or anything
Belden doesnt use a console, nor does his settings have walker looter or targeting turned on.
When you load his script make sure the corresponding .lua is loaded in the scripter, edit the support hud and alarm settings to your liking, dont forget about magic shooter, turn on targeting and looter, save your settings here, if you made any changes to anything, turn walker on and script should run.
I am aware of a minor bug, in my latest script I added an extra label for leaving, if you are inpatience, add an new label called "Exit|Spawn" after CheckLeave (if there is any problem)
Will fix that momentarily![]()
Belden's Free Scripts
Belden's Quest Scripts
Bought Lifetime Subscription from Fractal
Bought TeamSpeak 3 Service from Sikkness
Bought Leveling Service from Y2Quakepc2
I want to put scripiter to SD in as he hunts , except I can not pull the examples you have, there's no way to put on trial 10 days free ?
Can someone help me make a scripter to stay doing sd in hunt?
Module.New("Make Rune", function()
local SDRequiredMana = 1000
local BlankRequiredMana = 200
--make blank if needed, change blankManaAmount to anything
if ( Self.ItemCount(PutIDofBlankRuneHERE) < 1 ) and (Self.Mana() > BlankRequiredMana ) then
Self.Say("adori blank")
wait(2000,2500) --change to whatever delay you like
end
--if we are here we have a rune
if Self.Mana() >= SDRequiredMana and Self.Soul() >= 5 then
Self.Say("adori gran mort")
wait(2000,2500)
end
end)