Results 1 to 10 of 10

Thread: HoverTopXP:Boolean;

  1. #1
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default HoverTopXP:Boolean;

    Simba Code:
    {*Hovers the XP at the top of the screen
    By: Sin.
    Last Modified: April 6th, 2012*}


    function HoverTopXP:Boolean;
    var
      x,y:Integer;
    begin
      if FindColorSpiralTolerance(x,y,2302755,239,11,277,41,14) then
      begin
        writeLn('Experience is active');
        Result := True;
      end else exit;
      if Result then
        MouseBox(239,11,277,41,3);
    end;

    It's for antiban.

  2. #2
    Join Date
    Dec 2011
    Posts
    733
    Mentioned
    2 Post(s)
    Quoted
    7 Post(s)

    Default

    We could expand on this, to get the xp till level, current xp, and current level.
    My scripts: LunarPlanker
    ---
    My Utilities: Cross Platform, Open Source, SPS Path Generator

    Join the Unoficial SRL Skype Group by clicking here, or visiting this thread.

  3. #3
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Yeah, this is more an antiban thing ;D

  4. #4
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by m34tcode View Post
    We could expand on this, to get the xp till level, current xp, and current level.
    I think SRL already has those three included...not positive though

  5. #5
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Yeah, I find it as nice suggestion
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  6. #6
    Join Date
    Dec 2011
    Posts
    733
    Mentioned
    2 Post(s)
    Quoted
    7 Post(s)

    Default

    SRL, does have a check level, but it does not use the xp popup i don't think. Ill check that to be sure.
    My scripts: LunarPlanker
    ---
    My Utilities: Cross Platform, Open Source, SPS Path Generator

    Join the Unoficial SRL Skype Group by clicking here, or visiting this thread.

  7. #7
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    Why so many lines? and the writeln?

    Simba Code:
    function HoverTopXP:Boolean;
    var
      x,y:Integer;
    begin
      if FindColorSpiralTolerance(x,y,2302755,239,11,277,41,14) then
      begin
        Result := True;
        MouseBox(239,11,277,41,3);
      end;
    end;

  8. #8
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Because I wanted to make sure it worked?

  9. #9
    Join Date
    Dec 2011
    Posts
    496
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by mormonman View Post
    Why so many lines? and the writeln?

    Simba Code:
    function HoverTopXP:Boolean;
    var
      x,y:Integer;
    begin
      if FindColorSpiralTolerance(x,y,2302755,239,11,277,41,14) then
      begin
        Result := True;
        MouseBox(239,11,277,41,3);
      end;
    end;
    I agree with mormanman.
    Nearly maxed, woowweee.

  10. #10
    Join Date
    Dec 2011
    Posts
    733
    Mentioned
    2 Post(s)
    Quoted
    7 Post(s)

    Default

    While this may be for antiban, it can pull usefull info ;]
    My scripts: LunarPlanker
    ---
    My Utilities: Cross Platform, Open Source, SPS Path Generator

    Join the Unoficial SRL Skype Group by clicking here, or visiting this thread.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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