Lineage 2 Tower Forum

Full Version: Free Check EXP to Town Script!!!!!!!!!!!!!!!!!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i was bore doing quest today so i make this script just for the heck of it since i can't find one in the forum oo...

What it does, check base on minutes if no gain exp then SOE...
if it's in town, it won't check but Sleep base on your set minutes.

pretty much self explanatory.

you like? Hit Thanks.

Code:
ShowToClient("Exp","Check");

min = 3 -- in minutes to check during hunt (currently check every 3 mins)
town = 5 -- if in town then sleep in minutes before resume checking (make sure to have enough times to run to bot spot).
Scroll = 736 -- Scroll of Escape ID -- put other id scroll if you don't want to use SOE

Current = 1 -- 1 = enable ---- 0 = disable
Before = 1 -- 1 = enable ---- 0 = disable
Gain = 1 -- 1 = enable ---- 0 = disable
Total = 1 -- 1 = enable ---- 0 = disable

--------Don't Change Below-------
Yippy = 0
x = 0
Zero = GetMe():GetEXP()
repeat
if x == 0 then
First = GetMe():GetEXP()
x = x + 1
end
if (GetZoneType() == 12) then
Yippy = 0
x = 0
Sleep(town*60*1000)
end
if Yippy >= (min * 60) then
Second = GetMe():GetEXP()
if Second == First then
CancelTarget(true)
UseItem(Scroll); -- Scroll of Escape
Sleep(25*1000)
else
if Current == 1 then
ShowToClient("Current","Exp "..Second);
Sleep(1000)
Yippy = Yippy + 1
end
if Before == 1 then
ShowToClient("Before","Exp "..First);
Sleep(1000)
Yippy = Yippy + 1
end
if Gain == 1 then
wtf = Second - First
ShowToClient("i","Gains "..wtf);
Sleep(1000)
Yippy = Yippy + 1
end
if Total == 1 then
ohman = Second - Zero
ShowToClient("Total","Gains "..ohman);
Sleep(1000)
Yippy = Yippy + 1
end
end
x = 0
Yippy = 0
end
Sleep(1000)
Yippy = Yippy + 1
until false
I dont get why you would do this. can you explain more?
(12-22-2014 17:46 PM)tophersoccer Wrote: [ -> ]I dont get why you would do this. can you explain more?

Big Grin to not sit in spot, but sit in town, to move back char :Big Grin
ohhhh i see. thanks! QQMaster?
(12-22-2014 17:46 PM)tophersoccer Wrote: [ -> ]I dont get why you would do this. can you explain more?

(12-22-2014 04:13 AM)soul2eat Wrote: [ -> ]i was bore doing quest today so i make this script just for the heck of it since i can't find one in the forum oo...
(12-22-2014 19:21 PM)tophersoccer Wrote: [ -> ]ohhhh i see. thanks! QQMaster?

yes he is QQMaster
yes
Reference URL's