Results 1 to 12 of 12

Thread: Dervish AutoLongBowFletcher

  1. #1
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Dervish AutoLongBowFletcher

    Ok this is my first working script and i'm quite proud of it... Sorry though but F2P people and people that haven't done the introduction of R.F.D won't be able to use this script.

    Instructions :
    -Put your logs in first bank slot
    -Put knife in first inventory slot
    -Pick the Culimancer Chest's RED and put it in line 11 after the "= ", over the actual color.
    -DO NOT put crosshair over RuneScape client window... I'm sorry but i accidentally scripted it without the crosshair on the RuneScape client...
    -Fill your inventory with logs.
    -Place your guy next to the chest.
    -Run script ^^.

    There is no proggy but i'll make one soon.

    Attachment 9467

  2. #2
    Join Date
    Dec 2007
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    "DO NOT put crosshair over RuneScape client window... I'm sorry but i accidentally scripted it without the crosshair on the RuneScape client..."
    so how is it supposed to work. So you mean drag the crosshair over the entire web browser? what if i use my browser full screen will it work? there will be different coordinates....................

  3. #3
    Join Date
    Dec 2007
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good job on your first scripth):
    but it is coordinate clicking and you can get caught easily
    " MoveMouseSmooth(875,459);
    Wait(100);
    ClickMouse(875,459,false);
    Wait(100);
    MoveMouseSmooth(865,528);
    Wait(100);
    ClickMouse(865,528,true);
    Wait(100);
    MoveMouseSmooth(349,308);
    Wait(100);
    ClickMouse(349,308,false);
    Wait(100);
    MoveMouseSmooth(344,380);
    Wait(100);
    ClickMouse(344,380,true);
    Wait(500);
    MoveMouseSmooth(742,270);
    Wait(100);
    ClickMouse(742,270,true);
    Wait(2000);"

  4. #4
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by outtamyhouse1 View Post
    good job on your first scripth):
    but it is coordinate clicking and you can get caught easily
    " MoveMouseSmooth(875,459);
    Wait(100);
    ClickMouse(875,459,false);
    Wait(100);
    MoveMouseSmooth(865,528);
    Wait(100);
    ClickMouse(865,528,true);
    Wait(100);
    MoveMouseSmooth(349,308);
    Wait(100);
    ClickMouse(349,308,false);
    Wait(100);
    MoveMouseSmooth(344,380);
    Wait(100);
    ClickMouse(344,380,true);
    Wait(500);
    MoveMouseSmooth(742,270);
    Wait(100);
    ClickMouse(742,270,true);
    Wait(2000);"
    I know but since it's usually a personal script you don't get checked that much... Thanks...

    But did it work at least ?

  5. #5
    Join Date
    Dec 2007
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    sry, haven't done that quest.

  6. #6
    Join Date
    Dec 2007
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this for banking your bows:
    PHP Code:
    Begin
        
    for := 2 to 28 do
        
    Begin
          
    if ExistsItem(ithen
          Begin
            MouseItem
    (ifalse);
            
    ChooseOption('All');
            
    Wait(1000 random(500));
          
    end;
        
    end;
    end

  7. #7
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by outtamyhouse1 View Post
    Try this for banking your bows:
    PHP Code:
    Begin
        
    for := 2 to 28 do
        
    Begin
          
    if ExistsItem(ithen
          Begin
            MouseItem
    (ifalse);
            
    ChooseOption('All');
            
    Wait(1000 random(500));
          
    end;
        
    end;
    end
    Thx

  8. #8
    Join Date
    May 2006
    Posts
    702
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I don't think this will get accepted in Free For All section...Probably because it's so detectable.

    1-99 fletching from pure autoing

    My account unlocks: 92 mage 90 range lvl 80 | 94 mage 87 range lvl 91 | 85 mining lvl 41 | Rich lvl 65

  9. #9
    Join Date
    Aug 2007
    Location
    USA
    Posts
    370
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ya, i need a script i can run all night
    sorry
    It must have been the ganja?

  10. #10
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    It Sucks Please Close This Was My First Script...

  11. #11
    Join Date
    Mar 2007
    Posts
    276
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright Here is some tips..

    Alright x,y are globals so you dont have to use all these variables..

    SCAR Code:
    var
    i : Integer;
    x,y : Integer;
    xx,yy : Integer;
    xxx,yyy : Integer;



    For your constants you dont need bank colors, theres a function called

    SCAR Code:
    Openbankquiet('feb')


    Also for red text color, the text isnt going to change colors, so you dont need that one, just put it inside the script.

    so this is what it should look like.

    [SCAR]const
    HowManyLoads = 40;SCAR]


    Now for your cutting procedure.. omg..

    First of all NEVER use ClickMouse or MoveMouseSmooth. Instead of using Them use Mouse(x,y,0,0,true) and MMouse(x,y,0,0). Also NEVER use a Wait without a random number.

    this is what you used.
    SCAR Code:
    Wait(100);

    so it should look like this. This waits 100 ms than random's 1-231 more ms to the 100.
    SCAR Code:
    Wait(100 +random(231))


    This
    SCAR Code:
    MoveMouseSmooth(832,458);
     Wait(100);
    ClickMouse(832,458,true);

    Should look like this

    SCAR Code:
    MMouse(x,y,0,0)
     Wait(100 +random(231));
    Mouse(x,y,0,0,True)


    I like how you used FindColor but to make the script work better and make it run longer use FindColorTolerance. It finds your color and makes it have a better chance of finding the color, since runescape changes colors.


    Also this

    SCAR Code:
    i:=i+1

    You need to declare that i:= 0 somewere in the script, because scar dosent know what i equals, cause i could equal to anything.


    Also why did you put this in the main loop. It snot nessecary, you just need to include that in a procedure.

    SCAR Code:
    If (FindColor(x,y,BankColor,432,314,648,452)) then



    Hope i helped
    If you need more help contact me at rizaalb1tch@live.com


    Someone: 'Who the hell is TooManySitUps?'

    Boreas: 'Switch the first and last letter of my name, what do you get?'

    Someone: 'Um, SoreAb?'

    Boreas: 'And how do you get that?'

    Someone: 'From Too Many Sit Ups!! Haha, Boreas you are so clever!'

    Boreas: 'Ya he's like my evil twin that takes over when I'm being really sarcastic, or playing devil's advocate.'

  12. #12
    Join Date
    Sep 2007
    Posts
    501
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I responded to the last post not reading the one before that , I didn't delete this post because I hope somebody learns from it

    globals can be declared like this
    SCAR Code:
    var
      i, x, y, ix, iy, KoKouKoIsSexy, moreI, SomeMoreGarbage : integer
    no need for multiple lines





    SRL's Mouse function already includes a move so you don't need to add one
    SCAR Code:
    MMouse(x,y,0,0)
     Wait(100 +random(231));
    Mouse(x,y,0,0,True)
    SCAR Code:
    Mouse(x, y, 0, 0, True);

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [Voting]Dr D. Dervish Vrs Nicbaz !
    By NiCbaZ in forum Graphics Contests
    Replies: 27
    Last Post: 02-11-2009, 07:39 PM
  2. Dr D. Dervish vs NiCbaZ
    By Dervish in forum Graphics Contests
    Replies: 3
    Last Post: 02-06-2009, 07:50 PM
  3. Freakymonkey's AutoLongbowFletcher/Stringer
    By FreakyMonkey in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 04-06-2008, 12:42 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
  •