Haha, I wish it was that easy.
This has been me for the past 8 hours, I actually have to use the soil on the machine with each char, get the levers goin' and to make things fun; since I dont have a reliable Sioer, I actually alt+tab between the knight and druid while playing "catch me if you can" with the damn LotE since he's got a PERMANENT crush on my lowest level. It's pretty fun actually; he paralyzes everyone every 2 secs so all the chars are moving non stop with utani hur, 10 min wait time sucks tho~, ah and I'm skilling a noob knight in the meanwhile.
I've killed 40 so far, I'll post the loot when I decide to go to sleep (which wont be soon thanks to Australian Open, yay).
Thanks everyone for the good wishes, I was lucky but I hope I can get an Oceanborn too.
Atheist.
Last edited by Atheist; 01-17-2013 at 05:09 AM.
I have decided to divide the rest of the project in 10%'s, every 50 LotEs I will post the total loot and in the end the grand total, seems easier that way rather than just posting random amounts of kills.
Round 1, the first 50. I was lucky? maybe, maybe not, I have yet to remind you all that I have killed over 100 LotEs in the past so if we put em together we can say that (so far) it's 1 ETA every 150 (and counting) LotEs which doesnt seem that easy anymore. Anyway this is just raw, informal calculations, if I dont get another ETA we could conclude that its 1 ETA every 600 LotEs, we'll see what happens.
Atheist.
Nice one lol!!
gz atheist with your loot!!!!!!
im starting now with my first 30!
im casting , name farod
lol he target all the time my druid :<
Jan 17 2013, 08:59:31 CET Died at Level 142 by Lord of the Elements.
@Atheist how much is earthborn titan armor worth in your world?
Last edited by jikoe; 01-17-2013 at 08:14 AM.
Made this while watching jikoe but you can have it too if it helps.
[code=lua]
local x, y = 10, 20 -- Set x and y offset
local Timer = HUD.New(x, y, "", 255, 255, 255)
local startTimer, lastTime = false, 0
Module.New('lote-timer', function()
if startTimer then
local timeDiff = os.difftime(os.clock(), lastTime)
Timer:SetText(string.format("Time since last entry: %.1d:%.2d", math.floor(timeDiff / 60), timeDiff - math.floor(timeDiff / 60) * 60))
if timeDiff > 10 * 60 then
startTimer = false
end
else
Timer:SetText("LotE is ready!")
repeat
wait(50)
until Creature.New("Lord Of The Elements"):isAlive() and Creature.New("Lord Of The Elements"):isOnScreen()
lastTime = os.clock()
startTimer = true
end
end)
[/code]
Last edited by Spectrus; 01-17-2013 at 11:22 AM.