Results 1 to 3 of 3

Thread: Somebody school me on this v. guildraper

  1. #1
    Join Date
    Sep 2006
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Somebody school me on this v. guildraper

    Im having a problem getting close enough to the ladder when coming back from guild. Cheesehunk helped me a little and I think he got tired of my noobness

    Anyhow, he edited the walking part and in which got me closer to the ladder, but not cl;ose enough. I need to move west like 2 more inches in order for this to work. Can anybody help me out and explain this part of the code, or go ahead and do it for me?

    repeat
    c:=c+1;
    RadialWalk(MapOreColor,200,290,45,-1,0);
    if FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) then break;
    if c=15 then begin Logout; exit; end;
    until( FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) or(c>15) )
    IdleTime(3000, 1000, 1.0);
    If FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) Then Mouse(x,y,2,2,True);

  2. #2
    Join Date
    Feb 2006
    Location
    Myrtle Beach, SC USA!
    Posts
    841
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Browning1981
    Im having a problem getting close enough to the ladder when coming back from guild. Cheesehunk helped me a little and I think he got tired of my noobness

    Anyhow, he edited the walking part and in which got me closer to the ladder, but not cl;ose enough. I need to move west like 2 more inches in order for this to work. Can anybody help me out and explain this part of the code, or go ahead and do it for me?
    SCAR Code:
    repeat
        c:=c+1; // Counts Attempts
        RadialWalk(MapOreColor,200,290,45,-1,0);  // Walks Minimap ORE Color, Degress 200-290 at Distance of 45
        if FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) then  
         break;  // If Find LadderColor on MINIMAP then Break Repeat Loop
        if c=15 then begin Logout; exit; end; // If C > 15 then Logout cuz your lost
      until( FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) or(c>15) )  // if Ladder Colors or C then exit
      IdleTime(3000, 1000, 1.0);
      If FindColor(x,y,LadderColor,MMX1,MMY1,MMX2,MMY2) Then Mouse(x,y,2,2,True);

    just so you know RadialWalk Degress are like

    0 North, 90 East, 180 South, 270 West

    so 200-290 is like Southeast to atiny tiny biit Northwest searching in a Clockwise Manner

    hope that helps

  3. #3
    Join Date
    Sep 2006
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok well Im just beginning so im not sure. When i run the script, once im full of coal it clicks west toward the ladder once, but doesnt take me far. Cheesehunk got me further when he changed those numbers. I just want to move west like 2 inches on screen.

    Im stuck here and need to have the ladder in view for it to work for me. So I need to figure out how to make him move more westward. Make sense?



Thread Information

Users Browsing this Thread

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

Similar Threads

  1. School
    By Harry in forum News and General
    Replies: 46
    Last Post: 04-04-2009, 06:16 AM
  2. What are you doing in school?
    By IEatJ00erBaybees in forum Discussions & Debates
    Replies: 18
    Last Post: 06-09-2007, 11:24 PM
  3. I'm old school
    By yesiammanu in forum News and General
    Replies: 6
    Last Post: 02-07-2007, 12:39 AM
  4. school...
    By Dark_Sniper in forum News and General
    Replies: 19
    Last Post: 08-27-2006, 05:12 PM
  5. How did you do in school??
    By Cheesehunk in forum News and General
    Replies: 23
    Last Post: 07-08-2006, 11:07 PM

Posting Permissions

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