Results 1 to 8 of 8

Thread: 100% Fast Working GE Functions

  1. #1
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default 100% Fast Working GE Functions

    So far all I did was:

    Code:
    {*******************************************************************************
    function GEScreen : Boolean;
    by: NCDS
    Description: Finds Grand Exchange Screen. Returns true if Found.
    *******************************************************************************}
    
    {*******************************************************************************
    function OpenGE : Boolean;
    by: NCDS
    Description: Opens Grand Exhange. Return's True if Opened.
    *******************************************************************************}
    
    {*******************************************************************************
    function CloseGE : Boolean;
    by: NCDS
    Description: Closes Grand Exchange Window. Returns True if Closed.
    *******************************************************************************}
    They all work 100% and seem to be working extremely fast.
    Last edited by NCDS; 03-26-2009 at 04:21 AM.

  2. #2
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Grand Exchange functions should be in Misc folder, since they are exclusively used in some cases. Post the functions, I can't see them


  3. #3
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    oops sry I forgot to upload them

    All fixed now.

  4. #4
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol, nice functions, did you use SCAR Assistant?

  5. #5
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Suggestions:

    - GEScreen: Wouldn't a GetColor be faster? There must be a static pixel somewhere in the screen.
    - CloseGE:
    scar Code:
    end else
      MarkTime(T);
    There is no need to continue the function if there is not GE screen open, since it's closed.


  6. #6
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by Cazax View Post
    Suggestions:

    - GEScreen: Wouldn't a GetColor be faster? There must be a static pixel somewhere in the screen.
    - CloseGE:
    scar Code:
    end else
      MarkTime(T);
    There is no need to continue the function if there is not GE screen open, since it's closed.
    Get Color may be Faster, I just used a Text TPA because thats what is used in Bank.scar. It works instantly anyways.

    The MarkTime(T); stuff is in there to handle people who deal with a bit of Lag.


    Quote Originally Posted by Da 0wner View Post
    SCAR Code:
    {*******************************************************************************
    function CloseGE : Boolean;
    by: NCDS
    Description: Closes Grand Exchange Window. Returns True if Closed.
    *******************************************************************************}

    function CloseGE : Boolean;
    begin
      if not GEScreen then exit;
      Mouse(485, 41, 8, 9, True);
      Wait(200);
      result := (not GEScreen);
    end;

    ??
    ...No?

  7. #7
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    In CloseGE, I would change the clicking from Mouse to MouseBox. Would be a ton less bannable.

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  8. #8
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    I have never really experimented with MouseBox, but I will check that out right now and change it.

    EDT: Fixed!
    Last edited by NCDS; 03-26-2009 at 04:22 AM.

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
  •