Results 1 to 17 of 17

Thread: Would this be safe to use?

  1. #1
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Would this be safe to use?

    Would it be safe to use coords to walk a very short distance with high randoms? Radialwalk doesn't work for me for some reason and i'm doing it correctly.. so anyway would it be safe or detectable?





  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    I know for a fact that RadialWalk works... Mind posting what you have?

  3. #3
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    program ZetasMapleChop;
    
    {.include SRL\SRL.scar}
    {.include SRL\SRL\Skill\Woodcutting.SCAR}
    
    const
      Maple = 19058; //the color of the maple
      Maple2 = 16760;
      Maple3 = 9548;
      Tol = 12;
      RunDirection = 'S'; //the direction to run if in fight
      LogsToChop = 50; //how many logs to chop)
    
    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1; //Number of players to use
     NumberOfPlayers(HowManyPlayers); //Don't Touch
       CurrentPlayer := 0;  //Player to start with
       Players[0].Name := 'shampoo'; //Players username
         Players[0].Pass := ''; //Players password
           Players[0].Nick := 'hamp'; //3-4 characters from players username(Lowercase and no spaces)
             Players[0].Active := True;     //Are you using this player?
              end;
    
    procedure WalkToMaples;
    begin
    MakeCompass('N');
    RadialWalk(2377842 , 315, 355, 32, 0, 0);
    end;
    
    procedure ChopMaples;
    var
    
      ChopMark: Integer;
    begin
      repeat
        if FindObjMulti('aple tree', Maple, Maple2, Maple3, Tol) then
        begin
          GetMousePos(X, Y);
          Wait(500 + Random(102));
          Mouse(X, Y, 1, 1, True);
           MarkTime(ChopMark);
          repeat
            Wait(500 + Random(250));
            FindNormalRandoms;
          until(TimeFromMark(ChopMark) >= (10000 + Random(5000)));
    
        end;
      until(False);
    end;
    
    procedure WalkToBank;
    begin
    if (InvFull) then
    begin
    MakeCompass('N');
    RadialWalk( 9606557 , 218, 195, 50, 0, 0);
    end;
    end;
    
    
    begin
      ActivateClient;
      SetUpSRL;
      DeclarePlayers;
      repeat
        if not LoggedIn then loginplayer;
         WalkToMaples;
          ChopMaples;
           WalkToBank;
       until(false)
    end.
    I have made alot of threads about it already and still haven't got an answer.. before it would log in and start trying to find maples right away without walking to them first and now it just logs in and sits there..





  4. #4
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Your problem is, it seems, you are using colors for it. Colors change. What colors are you trying to make it walk on?

  5. #5
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    the grass, and i've tryed the maple color on the mini map. now i keep getting this error with the aid for radial walk

    edit: and it wont let me close it.. i keep clicking ok and it wont close :S





  6. #6
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Ok I see. You can't really use RadialWalk for that. I suggest DTMs or DDTMs. If neither work, then maybe some coords, but they are unreliable.

  7. #7
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    do you know what that error is? i cant close that window now

    edit: i thought dtms were only for objects with a shape?





  8. #8
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Nah, they can really be used for anything.

    And no, I have no clue what's causing that...

  9. #9
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    okay i had to use task manager to close it but err one more question do you have any guides you could reccomend for using dtms? i'm really bad at them..

    i have no clue how to do it with a single color on the minimap.. r u sure it's possible? because there is alot of the same color other places then just the place i want to click





  10. #10
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    You need to use tolerances... E.X. FindColorTolerance.

    That error just means that when the computer tried to store a value somwere, it had trouble with it.
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  11. #11
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    And the reason it isnt working is because of the update, not your script.

    Scripts: Edgeville Chop & Bank, GE Merchanting Aid
    Tutorials: How to Dominate the Grand Exchange

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

  12. #12
    Join Date
    Jul 2007
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 3garrett3 View Post
    And the reason it isnt working is because of the update, not your script.
    no before the update it did the same thing.. but ill try using tolerance when srl gets updated





  13. #13
    Join Date
    Apr 2007
    Location
    new zealand
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh i no y u gt that error i gt it allot 2 it something 2 do with vista and it security issues.

    that is if ur running vista other wise i hav no clue lol

  14. #14
    Join Date
    Feb 2008
    Location
    Ohio
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you are using Vista, and you are scripting, or even trying to run a script - I would turn off "User Account Control" as it is extremely strange on what it allows you to and not to access.

    To do this:

    Hold down your windows key, and press R, this will bring up the run box...

    Type 'msconfig' without quotes...

    Click the tools tab, and scroll down until you see "Disable UAC"

    Click the 'Launch' button

    An Ms-Dos box comes up and does the action very quickly, by the time the box is visible, the action has completed.

    Restart your computer

    If you want to turn UAC back on, just go back to the msconfig tools tab; and instead of launching 'Disable UAC' click and launch 'Enable UAC'

    I'm not sure if it will actually help, but it did help me when I used vista for just about anything I tried to do.

  15. #15
    Join Date
    Oct 2007
    Location
    england
    Posts
    200
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey this happened to me the message that wouldnt close just hold down
    ALT F4 and the message should eventualy go and you wont loose your work.
    also i found useing scar 2.13 it just logged in an stood ther but when i used scar 3.12 it worked fine. hope i helped
    Quote Originally Posted by ham? View Post
    i didnt merder the fukin english language it im just talkin gangsta!!
    which none of u would no coz ur all fukin nerds

  16. #16
    Join Date
    Mar 2007
    Location
    Ohio
    Posts
    138
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  17. #17
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Let's close this.
    Hup Holland Hup!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Is it safe to....?
    By joeyfeduka in forum RuneScape News and General
    Replies: 12
    Last Post: 02-26-2008, 03:08 AM
  2. Is it Safe?
    By Hurgymcgurgygurg in forum Bot Information and Spottings
    Replies: 3
    Last Post: 02-18-2008, 04:12 PM
  3. How Safe Is This ??????????????
    By spork985 in forum Bot Information and Spottings
    Replies: 7
    Last Post: 11-20-2007, 01:06 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •