Page 2 of 6 FirstFirst 1234 ... LastLast
Results 26 to 50 of 126

Thread: [RS07]AutoCurser

  1. #26
    Join Date
    Feb 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    The script is not clicking the curse button for me, just hovering. Did I do the anti leach wrong, I changed the mouse lines to:

    mouse(833,209,5,5, true);

    for each of them

  2. #27
    Join Date
    Feb 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    I fixed my last error. Just changed Mouse to MMouse for all of them.
    Can someone see what's wrong with this, it won't click the monk.

    procedure CurseMonk;
    begin
    if P07_FindObj(x,y, 'onk',3423118,5) then
    begin
    mmouse(x,y,2,2);
    clickmouse2(mouse_left);
    wait(randomrange(1000,2000));
    end
    end;

  3. #28
    Join Date
    Feb 2013
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by obsessive View Post
    I fixed my last error. Just changed Mouse to MMouse for all of them.
    Can someone see what's wrong with this, it won't click the monk.

    procedure CurseMonk;
    begin
    if P07_FindObj(x,y, 'onk',3423118,5) then
    begin
    mmouse(x,y,2,2);
    clickmouse2(mouse_left);
    wait(randomrange(1000,2000));
    end
    end;
    It has to do with the word I underlined and bolded. It shouldn't have compiled correctly with that code.

  4. #29
    Join Date
    Feb 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by SlyTaco View Post
    It has to do with the word I underlined and bolded. It shouldn't have compiled correctly with that code.
    I changed it to end;
    I don't know how I mixed that. It still doesn't click the monk though :\

  5. #30
    Join Date
    Feb 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by DannyRS View Post
    If you call P07_TabInventoryTab(7); after that, it should switch back?

    I'd also use RandomRange(3000,5000); or something, because just random could result 0, meaning you hover for badically nothing, and just drag the mouse over everything

    You can also try the new P07_CastSpell(Number); - 1-63 (it's untested in detail tho)
    Hey can you tell me what is wrong with this bit please. It won't click the monk. I removed the anti-leach


    procedure CurseMonk;
    begin
    if P07_FindObj(x,y, 'onk',3423118,5) then
    begin
    mmouse(x,y,2,2);
    clickmouse2(mouse_left);
    wait(randomrange(1000,2000));
    end;
    end;

  6. #31
    Join Date
    Feb 2013
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by obsessive View Post
    Hey can you tell me what is wrong with this bit please. It won't click the monk. I removed the anti-leach


    procedure CurseMonk;
    begin
    if P07_FindObj(x,y, 'onk',3423118,5) then
    begin
    mmouse(x,y,2,2);
    clickmouse2(mouse_left);
    wait(randomrange(1000,2000));
    end;
    end;
    The color might be a little off, use the eyedropper tool on the monk and get the color number. Then replace the 3423118 in the code with the number you get.

  7. #32
    Join Date
    Feb 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by SlyTaco View Post
    The color might be a little off, use the eyedropper tool on the monk and get the color number. Then replace the 3423118 in the code with the number you get.
    It finds the monk perfectly and has the mouse directly over it, just no click :S

  8. #33
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Quote Originally Posted by obsessive View Post
    It finds the monk perfectly and has the mouse directly over it, just no click :S
    I've been trying to solve this problem all day, but for some reason my UpText does not work for some people :/


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  9. #34
    Join Date
    Feb 2013
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    Make sure runescape brightness is set to MAX (all the way to the right)

    I've run it for over 1500 curses straight, works fine on my end :/

  10. #35
    Join Date
    Feb 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    edit: fixed antileach
    Last edited by xoy; 02-28-2013 at 12:35 AM.

  11. #36
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think i've figured out everything except [Error] C:\Simba1\CurseRelease2.simba(21:2): Identifier expected at line 20...

  12. #37
    Join Date
    Feb 2013
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    So sad how no1 reps or anything for using other peoples scripts, no wonder the community gets pissed @ leachers

  13. #38
    Join Date
    Feb 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    edit: updated includes and works fine
    Last edited by uberpeach; 03-02-2013 at 07:20 AM.

  14. #39
    Join Date
    Feb 2013
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by uberpeach View Post
    I get a Type mismatch error from this if statement
    procedure CurseMonk;
    begin
    if P07_FindObj(x,y, 'onk',3423118,5) then
    begin
    mmouse(x,y,2,2);
    clickmouse2(mouse_left);
    wait(randomrange(1000,2000));
    end;
    end;
    idk if theres still something wrong with that or if i have a problem with my compiler
    Looks fine from here :/

  15. #40
    Join Date
    Feb 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Exception in Script: Unable to find file 'P07Incliude.Simba' used from 'C:\Documents and Settings\PC\My Documents\Downloads\CurseRelease.simba'

  16. #41
    Join Date
    Feb 2013
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    Thats anti leach... look close

  17. #42
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by kiwiownage View Post
    Thats anti leach... look close
    I get this too but when i change the incliude to include it still sais the same

  18. #43
    Join Date
    Apr 2012
    Posts
    92
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    I changed your CurseMonk code a little bit, because it kept clicked on the same spot on the monk. Which is very bot-like.
    Simba Code:
    procedure CurseMonk;
    begin
    if P07_FindObjCustom(x,y, ['onk'],[3423118, 2501999, 3028099, 3159686],10) then Takebigpoooo
    begin
      mmouse(x,y,5,5);

  19. #44
    Join Date
    Feb 2013
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by roan View Post
    I get this too but when i change the incliude to include it still sais the same
    Make sure your P07 include is in the same folder as the script.

  20. #45
    Join Date
    Mar 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    nice script to bad every world is spammed by 3-4 autoers already lol

  21. #46
    Join Date
    Mar 2013
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by kiwiownage View Post
    It's super easy, just look at similar methods in the script to see whats different

    I don't know how but I managed to fix the anti leech because of your tip Thank you.

    Great script too thanks
    Now just to find a world without a caster...

  22. #47
    Join Date
    Mar 2013
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    this is the check invo line, i dont understand whats wrong as its same as friend chat line which says is ok?


    [Error] C:\Simba\Includes\CurseRelease.simba(21:2): Identifier expected at line 20


    procedure CheckInvo;
    begin
    mmouse(735,212,5,5);
    wait(randomrange(10,150));
    clickmouse2(mouse_left);
    wait(randomrange(500,5000));
    mmouse(835,206,5,5);
    wait(randomrange(25,50));
    clickmouse2(mouse_left);
    //end;

  23. #48
    Join Date
    Feb 2013
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    same problem..

  24. #49
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by mattyayeit View Post
    this is the check invo line, i dont understand whats wrong as its same as friend chat line which says is ok?


    [Error] C:\Simba\Includes\CurseRelease.simba(21:2): Identifier expected at line 20

    procedure CheckInvo;
    begin
    mmouse(735,212,5,5);
    wait(randomrange(10,150));
    clickmouse2(mouse_left);
    wait(randomrange(500,5000));
    mmouse(835,206,5,5);
    wait(randomrange(25,50));
    clickmouse2(mouse_left);
    //end;
    same problem..

  25. #50
    Join Date
    Jan 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    this if statement anti-leach doesn't make any fucking sense.. it says
    "[Error] C:\Users\Matt\Downloads\CurseRelease.simba(41:1): Semicolon (';') expected at line 40
    Compiling failed." and the procedure is highlighted, i tried everything i can think of but i can't get this shit to work

Page 2 of 6 FirstFirst 1234 ... LastLast

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
  •