Results 1 to 11 of 11

Thread: Alch bot

  1. #1
    Join Date
    Dec 2011
    Location
    Indiana
    Posts
    205
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Alch bot

    I know YoHoJo warned against functions like MoveMouse because they were too precise and could be noticed but if I just wanted to alch could I still use this because all it would be doing is clicking one spot?

    This isn't really for a public release it's just my own quick fix for MSI being a tad buggy.
    "Do not attribute to malice that which is adequately explained by stupidity"

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Still no.
    Must use mouse and MMouse only!
    It's not too hard to you know, need help with it?

  3. #3
    Join Date
    Feb 2011
    Location
    Earth
    Posts
    1,784
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I still would suggest using MoveMouse since it goes to exact coordinates. I would use MMouse or Mouse since those add degrees of randomness to them

    E: ninja'd because I went to get a cookie

    Currently: Working on Defending&Attacking in my Castle-Wars Script
    Project Rebuild: 90M/170M

  4. #4
    Join Date
    Dec 2011
    Location
    Indiana
    Posts
    205
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm not sure yet, I haven't delved too far into it or tried it out, if I do I'll let you know though.
    "Do not attribute to malice that which is adequately explained by stupidity"

  5. #5
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Mouse(x, y, RandomRange(0, 3), RandomRange(0, 3), True); gives you a human like alching click since you still slightly move your mouse.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  6. #6
    Join Date
    Dec 2011
    Location
    Indiana
    Posts
    205
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Kyle Undefined View Post
    Mouse(x, y, RandomRange(0, 3), RandomRange(0, 3), True); gives you a human like alching click since you still slightly move your mouse.
    Well I was thinking it would just mimic somebody like me who does other things while just clicking one button on a laptop. I'm still the epitome of noob when it comes to scripting so I'll see if I can work this.

    Thanks!
    "Do not attribute to malice that which is adequately explained by stupidity"

  7. #7
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Wtf kyle? Why randomrange?
    Why not just 3,3?

  8. #8
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Because, you won't always move your mouse when clicking. RandomRange makes it more human like since the number of variation changes.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  9. #9
    Join Date
    Dec 2011
    Location
    Texas
    Posts
    348
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Its ok because all you have to do is put your mouse in the same spot and spam click. Thats what I do when I alch I just drag the item im alching to the slot in inventory where when I click high alch it lands on the item.

  10. #10
    Join Date
    Dec 2011
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah honestly it would be more botlike if you had the mouse moving around while alching. Imo, if you have antibans (checking exp, right clicking an item on the ground, etc), random small breaks every so often, and the clicking times are randomized, it will look pretty human-like.

  11. #11
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Quote Originally Posted by Kyle Undefined View Post
    Because, you won't always move your mouse when clicking. RandomRange makes it more human like since the number of variation changes.
    MMouse already does that?
    Lines from MMouse below.
    Simba Code:
    WindMouse(cx,cy,(x + random(rx)),(y + random(ry)
    Simba Code:
    nx:= nx + RandomRange(rx, rx * 2);
            ny:= ny + RandomRange(ry, ry * 2);
    Simba Code:
    nx:= (cx + (f * e)) + random(rx);
          ny:= (cy + (g * e)) + random(ry);

    You got random, and random ranges all over there.
    Simba Code:
    program new;
    begin
      repeat
        Writeln(IntToStr(Random(5)));
      Until(False)
    end.
    Simba Code:
    3
    2
    0
    1
    2
    3
    2
    2
    2
    0
    4
    4
    2
    1
    1
    3
    1
    2
    0
    1
    4
    4
    4
    0
    3
    4
    4
    1
    2
    2
    1
    2
    3
    1
    4
    4
    1
    1
    3
    4
    1
    4
    4
    1
    4
    2
    4
    0
    0
    3
    4
    4
    3
    1
    0
    2
    0
    3
    4
    1
    0
    1
    1
    0
    0
    1
    2
    4
    4
    3
    0
    4
    2
    0
    2
    0
    3
    0
    1
    4
    1
    3
    3
    2
    1
    2
    2
    0
    3
    1
    3
    0
    1
    4
    3
    2
    1
    1
    2
    4
    3
    4
    1
    2
    3
    0
    2
    4
    0
    3
    4
    1
    3
    0
    2
    3
    1
    2
    3
    4
    1
    4
    3
    4
    3
    3
    0
    3
    4
    3
    3
    4
    0
    1
    4
    3
    0
    2

    It also results in 0s sometimes too!

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
  •