XenoBot Forums - Powered by vBulletin

User Tag List

Page 8 of 8 FirstFirst ... 678
Results 71 to 79 of 79

Thread: Knight Project by Shadow Wolf

  1. #71

    Join Date
    Jun 2015
    Posts
    24
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice pics, !! Lets go for pacc!!

  2. #72
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by diplu View Post
    Nice pics, !! Lets go for pacc!!
    Tempting as hell!
    Bit busy in real at the moment though so might wait till I do that.

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  3. #73

    Join Date
    Dec 2015
    Posts
    2
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    @"shadow wolf"
    What script for ss you using? I was using from examples but i lose 30 screenshoots with this..

  4. #74
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by softbzero2 View Post
    @"shadow wolf"
    What script for ss you using? I was using from examples but i lose 30 screenshoots with this..
    I use this one:

    lua code:
    --[[
    This is a XenoBot example script, intended to
    teach new users about the scripting API and
    act as script that is usable in actual play.

    levelupScreenshot.lua - takes a screenshot upon level up

    ** DO NOT EDIT THIS FILE. INSTEAD, COPY IT TO
    "Documents\XenoBot\Scripts" AND EDIT THE COPY. **
    ]]--


    --this continuously loops, executing the code inside over and over again
    while (true) do
    local name = Self.Name() --stores our name at the start
    local level = Self.Level() --stores our level at the start

    --this loops until our name changes (meaning we switched characters)
    while (name == Self.Name()) do
    --this checks if our level has increased, and screenshots if so
    if (Self.Level() > level) then
    level = Self.Level() --updates the stored level
    screenshot(name .. " level " .. level) --filename is "{name} level {level}
    end

    --this causes the loop to wait between 1 and 2 seconds before retrying
    wait(1500, 2500)
    end
    end

    As for how you are loosing screenshot, I'm not sure sorry. I don't think I've ever lost a screenshot with this script.

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  5. #75
    mariorton's Avatar
    Join Date
    Feb 2014
    Location
    Mexico
    Posts
    220
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    ill follow this project

    nice work, good luck mate

  6. #76
    Senior Member padj's Avatar
    Join Date
    May 2012
    Location
    Arizona--United States
    Posts
    1,061
    Mentioned
    36 Post(s)
    Tagged
    0 Thread(s)
    Nice to see ya progress. Keep it up.

  7. #77
    Senior Member Shadow Wolf's Avatar
    Join Date
    Jan 2012
    Location
    ⊰ New Zealand ⊱
    Posts
    657
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by mariorton View Post
    ill follow this project

    nice work, good luck mate
    Quote Originally Posted by padj View Post
    Nice to see ya progress. Keep it up.
    Thanks guys, just on an unwanted break at the moment due to an unfortunate spillage of beer.

    ~ A friend will bail you out of jail, but a true friend would be right there beside you saying: "DAMN that was fun!" ~


  8. #78
    Lifetime Subscriber Washand's Avatar
    Join Date
    Aug 2014
    Posts
    87
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    can u bring me ur script of rots fibula?

  9. #79

    Join Date
    Feb 2015
    Posts
    35
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i want that rot fibula script too

Tags for this Thread

Posting Permissions

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