PDA

View Full Version : [Request] When lvl = SS



Shirotriplex
12-11-2015, 06:51 PM
Hello Xeno's Users!

I am looking for script that makes screenshot when the character is advancing in level. I know most of exp scripts already have that but I am looking for .lua script.







Kind Regards,
Sebastian (Shirotriplex)

Joshwa534
12-11-2015, 07:30 PM
Hello Xeno's Users!

I am looking for script that makes screenshot when the character is advancing in level. I know most of exp scripts already have that but I am looking for .lua script.

Kind Regards,
Sebastian (Shirotriplex)


local level, queued = Self.Level(), false
Module.New('level-screenshot', function()
if queued then
screenshot(Self.Name() .. " level " .. Self.Level())
level, queued = Self.Level(), false
end
if Self.Level() > level then
queued = true
end
end)

Shirotriplex
12-18-2015, 10:57 PM
Joshwa534

Thank you ;-)