XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 3 of 3

Thread: [Request] When lvl = SS

  1. #1

    Join Date
    Mar 2015
    Posts
    30
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    [Request] When lvl = SS

    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)

  2. #2
    XenoBot Scripts Developer Joshwa534's Avatar
    Join Date
    May 2012
    Location
    Texas, USA
    Posts
    4,890
    Mentioned
    517 Post(s)
    Tagged
    3 Thread(s)
    Quote Originally Posted by Shirotriplex View Post
    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)
    lua code:

    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)

  3. #3

    Join Date
    Mar 2015
    Posts
    30
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    @Joshwa534

    Thank you ;-)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •