Log in

View Full Version : Alarm when get level 8



takeshi5675
04-18-2016, 03:54 PM
As in title, could you guys write for me script which will start alarm when my character get level 8.
Thank you so much :)

Oscagi
04-22-2016, 06:54 AM
As in title, could you guys write for me script which will start alarm when my character get level 8.
Thank you so much :)


Module.New('L_8', function()
if Self.Level() >= 8 then
alert()
end
end)


Something like that? I dont test it.