Thanks and nah I tried but I was in bed for like 15mins before that fella tried pking me. Hahahaha
Well actually your night is my day if that's what you mean. I live in New Zealand so I'm 12hours ahead of England.
Which I think makes me 10hours ahead of Sweden?
[S]Right so I've managed to whip up a script which plays an alarm when you reach "X amount" of Experience. It's pretty rough but it does the job so I should be missing less of my Level advance screenshots.[/S]
Any improvement or suggestions on how to improve it are welcome ofcourse
EDIT: Improved.
[CODE=lua]
--[[--
NAME: Alarm - 'X' Exp to Next Level
DESCRIPTION: Plays an alarm when you reach 'X' amount of experience before your next level.
AUTHOR: Syntax
CREATE DATE: Unknown
CURRENT VERSION: Unknown
UPDATE DATE: Unknown
--]]--
function Self.ExpToLevel(level)
local x = level or Self.Level() + 1
return ((50 / 3) * (x^3 - 6 * x^2 + 17 * x - 12)) - Self.Experience()
end
local threshold = 400 ----- Changet this number to the amount of Experience before your Level (ie. EARLY WARNING TO LEVEL) -----
while(true)do
if(Self.ExpToLevel() < threshold)then
alert()
end
wait(1000)
end [/CODE]
Thanks @Syntax.![]()
LOL this server seems hectic! Anyways good luck making it up there ahah, definetly a challenge!