Results 1 to 13 of 13

Thread: Pottermore ?

  1. #1
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Pottermore ?

    i tried maing a bot for Pottermore, but eventhough i put that mouse speed to 0, it moves really fast, to win at this game, you need to wait betwwen clicks and i can't firgure out how to do that. Here is my script so far

    program new;

    var
    x, y:integer;
    //MouseSpeed :=0;
    begin

    Movemouse(486, 418);
    Holdmouse(486, 418, 1);
    ReleaseMouse(486, 418, 1);
    HoldMouse(486, 418, 1);
    ReleaseMouse(486, 418, 1);
    Movemouse(393, 524);
    Holdmouse(393, 524, 1);
    releasemouse(393, 524, 1);

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    MouseSpeed is't going to affect MoveMouse, MoveMouse moves the cursor to the destination instantly no matter ur speed. MouseSpeed does affect MMouse (srl version of MoveMouse) though.

    But if u just want to wait between clicks, use Wait(1000)? where 1000 means 1000milliseconds=1sec.

    Also u can replace the HoldMouse and ReleaseMouse with ClickMouse2(true). Be sure to put {$I SRL/SRL.Simba} at the start of script below program name, and call SetupSRL before mainloop too.

  3. #3
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no it needs to be a certain amount of time, it needs 2 clicks before in can move on

    http://www.youtube.com/watch?v=ZIPFqRrVvBI that is what i want (a little more accurate)

  4. #4
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Yeah u simply use MMouse to move ur mouse there, then either do a Wait, or some ClickMouse (if u need to click it multiple times), before MMouse to another coordinate again.

  5. #5
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i want it to move after the click and that move should only take like 2 seconds ? i need to click it once for the ring to come out, and then click again when it is biggest, then it takes a few seconds to move to the next letter, not sure how i should go about this

  6. #6
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Can be simplified with a for loop but that may be too complicated for u at this point. Read more tutorials/videos will help u start off more easily.
    Simba Code:
    program new;
    {$I SRL/SRL.Simba}

    procedure OneRound(x,y: integer);
    begin
      MMouse(x,y,0,0); //move the mouse to x,y
      ClickMouse2(true); //click once
      Wait(); //input how many second u need to wait
      ClickMouse2(true); //click 2nd time)
    end;

    procedure MoveNext;
    begin
      OneRound(121,121); //change 121,121 to the actual coordinate;
      OneRound(232,212);   //the next point
      OneRound(352,231); //3rd point
      //and so on depending on how many circles u are clickin before restarting
    end;

    begin
      SetupSRL;
      repeat
        MoveNext;
      until(false);
    end.

  7. #7
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks! as it lookjs now it dosen't wanna run even though it says it is compiled

    current script

    program new;
    //{$I SRL/SRL.Simba}


    procedure OneRound(x,y: integer);
    begin
    //MMouse(x,y,494,414);
    //ClickMouse1(true);
    Wait(2500);
    //ClickMouse1(true);
    end;

    procedure MoveNext;
    begin
    OneRound(494,414);
    OneRound(392,525);
    OneRound(487,617);
    OneRound(581,533);
    OneRound(708,518);
    OneRound(837,529);
    OneRound(895,622);
    end;

    begin
    //SetupSRL;
    repeat
    MoveNext;
    until(false);
    end.

  8. #8
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Why did u comment out the procedures? Remove all the //

  9. #9
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i get an error when i do so


    Exception in Script: Unable to find file 'SRL/SRL.Simba' used from ''

    and when i put // in front of that an error occurs with something else

  10. #10
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Make sure u have the latest SRL.
    http://villavu.com/forum/showthread.php?t=47714

  11. #11
    Join Date
    Jun 2012
    Location
    THE Students-City of Holland
    Posts
    332
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    is pottermore a fun game?
    fun to hear that simba is not only used for runescape but also for other things/games.
    Former Name: MasterCrimeZ.
    ToDo: 1. Finish my private bot 2. Make some cool bots for this community 3. Become a member
    If you have any questions about scripting, feel free to PM me

  12. #12
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im only trying to create for experimental purposes but i do have the latest version of simba,downloaded it myself 2 days ago and pottermore isn't really a game, it's more of a competition which involves some game but not in a big scale

  13. #13
    Join Date
    Jun 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my mous erefuses to move to the spots...i double checked the cordinates but it just spasms around for some reason

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
  •