XenoBot Forums - Powered by vBulletin

User Tag List

View Poll Results: Do you think this should be added?

Voters
50. You may not vote on this poll
  • Yes

    49 98.00%
  • Maybe

    0 0%
  • No

    1 2.00%
Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 43

Thread: Screenshots

  1. #31
    Crystaline's Avatar
    Join Date
    Jun 2012
    Location
    Sweden
    Posts
    196
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Signed, PLEASE add this!

  2. #32
    Senior Member Neant's Avatar
    Join Date
    Jun 2012
    Location
    Stockholm, Sweden
    Posts
    1,848
    Mentioned
    50 Post(s)
    Tagged
    0 Thread(s)
    It would be very much appreciated. Signed.

  3. #33
    Lifetime Subscriber
    Join Date
    Oct 2011
    Posts
    246
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    has anything come from this yet?

  4. #34
    Banned
    Join Date
    Sep 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nao
    No
    Nie
    Nein
    Níl

  5. #35
    Mackdagwood's Avatar
    Join Date
    Jul 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    please add this i would love to see what kills me when i'm afk.

    ifs just low supplys, or somone luring on me.

  6. #36
    XenoBot Scripts Developer Syntax's Avatar
    Join Date
    Feb 2011
    Posts
    1,658
    Mentioned
    431 Post(s)
    Tagged
    4 Thread(s)
    Quote Originally Posted by Spectrus View Post
    A simple screenshot() function would suffice. Then people could create scripts for advances and such.

    @Stusse, proliferation, really? Close your thesaurus.
    how did I miss this?!? LOL

  7. #37
    Administrator
    Join Date
    Dec 2010
    Posts
    2,565
    Mentioned
    228 Post(s)
    Tagged
    1 Thread(s)
    I work in the shadows, silently toiling away in an effort to help XenoBot's proliferation, propagation, dissemenation.

  8. #38
    Lifetime Subscriber Stusse's Avatar
    Join Date
    Dec 2011
    Location
    solid-scripts.com
    Posts
    3,523
    Mentioned
    346 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by Spectrus View Post
    I work in the shadows, silently toiling away in an effort to help XenoBot's proliferation, propagation, dissemenation.
    You caught me red handed

  9. #39
    Perfection's Avatar
    Join Date
    Oct 2012
    Location
    The Netherlands
    Posts
    113
    Mentioned
    4 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by Infernal Bolt View Post
    I have requested this personally to @DarkstaR, we'll see when he adds it
    I use a script now that alarms if I have under 1k exp to level and it works pretty good

    [code=lua]
    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 = 1000 -- exp left to alarm on
    while(true)do
    if(Self.ExpToLevel() < threshold)then
    alert()
    end
    wait(1000)
    end
    [/code]
    You're the man!

  10. #40
    khorne55's Avatar
    Join Date
    Jan 2013
    Location
    Ireland
    Posts
    402
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Infernal Bolt View Post
    I have requested this personally to @DarkstaR, we'll see when he adds it
    I use a script now that alarms if I have under 1k exp to level and it works pretty good

    [code=lua]
    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 = 1000 -- exp left to alarm on
    while(true)do
    if(Self.ExpToLevel() < threshold)then
    alert()
    end
    wait(1000)
    end
    [/code]
    Now I know how exp per level is calculated. Thanks Bolt !

Posting Permissions

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