Results 1 to 9 of 9

Thread: New members trial annoyance

  1. #1
    Join Date
    Apr 2012
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default New members trial annoyance

    Every new account made recently has (i think) an unavoidable 14 day members trial. Only 300 members items can be collected, to avoid bots mining pure essence or something without paying for membership. The problem is that every time you log on a members ad pops up in the client asking if you want to buy membership. As far as I know, no bot recognizes this and it completely screws any kind of breaking/non babysitting system up because the bot freezes at this little window. I'd like a fix for this included in an update, because it seems like an easy fix and is a huge inconvenience.

  2. #2
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Why not make one yourself? Could just move the mouse to close the box?

  3. #3
    Join Date
    Apr 2012
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 14578 View Post
    Why not make one yourself? Could just move the mouse to close the box?
    How can I make it and add it? Make a new account and see where the box is. If you could make one to click the x that would be really awesome for everyone.

  4. #4
    Join Date
    Mar 2012
    Posts
    208
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So log in, close the screen and then enable the bot?

  5. #5
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Quote Originally Posted by sacapuntas View Post
    How can I make it and add it? Make a new account and see where the box is. If you could make one to click the x that would be really awesome for everyone.
    Try reading over some tuts over in Tutorial Island. It's probably some of the easiest coding going, and you never know, you might enjoy it.
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  6. #6
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

  7. #7
    Join Date
    Apr 2012
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by leetsxc View Post
    I released a function for this in the function forum if you need it.

    If it works I love you

    Can you post it here and show me, I can't find it
    Last edited by sacapuntas; 04-21-2012 at 11:08 PM.

  8. #8
    Join Date
    Apr 2012
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Anyone know where this script is? It would really help me out.

  9. #9
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Have you tried searching it? I believe it will always be at the same coords.

    Simba Code:
    Mouse
    ~~~~~

    .. code-block:: pascal

        procedure Mouse(mousex, mousey, ranx, rany: Integer; button: variant);

    Moves then clicks mouse (will only move if 'mouse_move' passed).

    .. note::

        by Mutant Squirrle, Harry

    Example:

    .. code-block:: pascal

    *)
    procedure Mouse(mousex, mousey, ranx, rany: Integer; button: variant);
    begin
      MMouse(mousex, mousey, ranx, rany);
      Wait(60 + Random(30));
      ClickMouse2(button);
      Wait(50 + Random(50));
    end;

    Which you would just do something like

    Simba Code:
    Mouse(x, y, 0, 0, true)

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
  •