Results 1 to 21 of 21

Thread: DTM Walking?

  1. #1
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default DTM Walking?

    Im having trouble walking to the bank at draynor after chopping willows. Everytime I play the script, right when I get a full inv, my whole computer lags and I get logged out, and I dont know what it could be, anyone know? I already tried FindDTMRotated too.

    SCAR Code:
    procedure WalkToBank;
    begin
      if(not(LoggedIn))then Exit;
      if (invfull) then
      begin
        BankDTM := DTMFromString('78DA63DCCFC0C060C60006CC108AE1F519018' +
           '6FF409A11CA67F402126E0C28E0CF1F26881C4C8D0F90284555F3' +
           'F62D03AA1A9039130998230D24FAF09B03006E130E46');
        MakeCompass('w');
        if (DTMRotated(BankDTM, x, y, MMx1, MMy1, MMx2, MMy2)) then
        begin
          Wait(500+random(150));
          Mouse(x, y, 3, 3, True);
        end;
        FreeDTM(BankDTM);
      end;
    end;

    For those who dont know, this is where I want to go, pink=start,red=end. Also, I want the compass to stay west while walking

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

    Default

    Something like this should work.

    SCAR Code:
    Program DTM;
    {.include/srl/srl.scar}

    Var
      BankDTM : Integer;

    Procedure LoadDTM;
    Begin
      BankDTM := DTMFromString('78DA63DCCFC0C060C60006CC108AE1F519018' +
           '6FF409A11CA67F402126E0C28E0CF1F26881C4C8D0F90284555F3' +
           'F62D03AA1A9039130998230D24FAF09B03006E130E46');
    End;
       

    Procedure WalkToBank;
    Begin
      if(not(LoggedIn))then Exit;
      if (invfull) then
      begin
        LoadDTM;
        MakeCompass('W');
        if (DTMRotated(BankDTM, x, y, MMx1, MMy1, MMx2, MMy2)) then
        begin
          Wait(500+random(150));
          Mouse(x, y, 3, 3, True);
        end;
        FreeDTM(BankDTM);
      end;
    End;

    Begin
      SetupSRL;
      WalkToBank;
    End.

    ~Camo
    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.


  3. #3
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sees pretty good, let me test it out in a few minutes and I'll let you now, thanks!

    Edit: nope it did the same thing as mine did, it lagged, but only when I had gotten a full inventory. It is not lagging cause of something else, because it i use symbol clicking instead, it works like a charm, but thats sorta suspicious to always click the bank symbol :P

  4. #4
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So anyone know? 100 gold stars for anyone who figures it out.

    oh yeah sorry for double posting.

  5. #5
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Make a smaller dtm of two bankers beside each other. I've heard that's the best way to do it.

  6. #6
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Make a smaller dtm of two bankers beside each other. I've heard that's the best way to do it.
    ok thanks I'll try it out.

  7. #7
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  8. #8
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    You're not making that DTM properly. and what are your PC specs?

  9. #9
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Hugolord View Post
    You're not making that DTM properly. and what are your PC specs?
    How would you make a proper dtm, because I tried 3 different ways. I dunno its kinda crap but I dont think that would be it, because other scripts work for me. Where can I find the specs for my computer anyways?

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

    Default

    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

  11. #11
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by poolikemax View Post
    hah yeah i followed that guide exactly. When I test to see if it will find it in the dtm editor, it does find it, so I'm not making it wrong. Would someone here test my script and see if it works?

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

    Default

    i will...if u post the script
    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

  13. #13
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by poolikemax View Post
    i will...if u post the script
    Ok sweet thanks

  14. #14
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this:

    SCAR Code:
    DTM := DTMFromString('78DA63CC676060886740016F9F2D60E002D28' +
           'C40FC1F0818CB30D5ECDB1D03A619A17CC612201187AAE6FD8F78' +
           '543585986A3EBEF1425103003FB21008');

  15. #15
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Try this:

    SCAR Code:
    DTM := DTMFromString('78DA63CC676060886740016F9F2D60E002D28' +
           'C40FC1F0818CB30D5ECDB1D03A619A17CC612201187AAE6FD8F78' +
           '543585986A3EBEF1425103003FB21008');
    Thanks for the help, I decided to take out the dtm and use something else, and it works, but I will add this in later as a failsafe and let you know it it works.

  16. #16
    Join Date
    Mar 2007
    Location
    Alberta, Canada
    Posts
    1,780
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    You probably didn't have a high enough tolerance. You need it pretty high if you're walking with dtms.

    -Griff

  17. #17
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by griff721 View Post
    You probably didn't have a high enough tolerance. You need it pretty high if you're walking with dtms.

    -Griff
    The tutorial said like 20 or something like that(I think) so I tried that and it wouldn't work, so Method told me to try 255, and that wouldn't work either. Its okay though, I'm using a different procedure now, thanks.

  18. #18
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    if you want help, gimmi a pm, ill send you my msn or something and we'll work it out there. If your using a different type of walking then it doesnt matter, but if you wanna learn it just lemme know
    “Ignorance, the root and the stem of every evil.”

  19. #19
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by blumblebee View Post
    if you want help, gimmi a pm, ill send you my msn or something and we'll work it out there. If your using a different type of walking then it doesnt matter, but if you wanna learn it just lemme know
    Thanks I'll do that :P

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

    Default

    it lagged 4 me as well dont know why sorry
    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

  21. #21
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by poolikemax View Post
    it lagged 4 me as well dont know why sorry
    no that actually helped me alot, now I know it isnt just my computer , thanks!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. walking help?
    By Rubix in forum OSR Help
    Replies: 0
    Last Post: 07-15-2008, 02:35 AM
  2. Walking
    By imskate182 in forum OSR Help
    Replies: 4
    Last Post: 12-20-2007, 05:18 AM
  3. Map walking
    By boberman in forum OSR Help
    Replies: 1
    Last Post: 12-06-2007, 12:48 AM
  4. help with walking
    By Jake_453 in forum OSR Help
    Replies: 7
    Last Post: 05-15-2007, 12:49 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
  •