Results 1 to 2 of 2

Thread: Chicken Slayer

  1. #1
    Join Date
    Dec 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Chicken Slayer

    I know, it's very basic.. It seems like it would work for me, but I guess it doesn't.. It says it compiles all right but it just doesn't do anything.. Wouldja take a look at it?

    Code:
    {---------------------------ProphesyOfWolf Presents----------------------------
    ===============================================================================
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    #######################Chicken Killer & Feather Collector######################
    === The title is pretty self explainatory. Put your character anywhere where
    there are chickens, and start the script. Make sure the game is in vbright. ====
    ###############################################################################}
    program chickenkiller;
    {.include SRL/SRL.scar}
    {.include SRL/SRL/skill/Fighting.scar}
    const
    bcolor1 = 3104383;
    bcolor2 = 5424861;
    bcolor3 = 1187462;
    tcolor1 = 8431034;
    tcolor2 = 5424861;
    tcolor3 = 1187462;
    killbrown = True;
    killtan = True;
    xs= 122;
    xe= 637;
    ys= 136;
    ye= 474;
    var
    x,y: Integer;
    procedure killtchickens;
     begin
       AttackMonster(tcolor1,tcolor2,tcolor3,'Chicken',7);
       FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
       If IsUpText('Take Feather') then
       Mouse(x,y,2,2,True);
    end;
    procedure killbchickens;
     begin
       AttackMonster(bcolor1,bcolor2,bcolor3,'Chicken',5);
       FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
       If IsUpText('Take Feather') then
       Mouse(x,y,2,2,True);
    end;
    begin
       setupSRL;
         repeat
           If (Killtan = True) then
            begin
            killtchickens;
         end;
       If (KillBrown = True) then
         Begin
           killbchickens;
         end;
       until (false);
    end.

  2. #2
    Join Date
    Nov 2007
    Location
    UK
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, when you search for the color, it doesn't move the mouse, so just input a "MMouse"! Like so,
    SCAR Code:
    {---------------------------ProphesyOfWolf Presents----------------------------
    ===============================================================================
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    #######################Chicken Killer & Feather Collector######################
    === The title is pretty self explainatory. Put your character anywhere where
    there are chickens, and start the script. Make sure the game is in vbright. ====
    ###############################################################################}

    program chickenkiller;
    {.include SRL/SRL.scar}
    {.include SRL/SRL/skill/Fighting.scar}
    const
    bcolor1 = 3104383;
    bcolor2 = 5424861;
    bcolor3 = 1187462;
    tcolor1 = 8431034;
    tcolor2 = 5424861;
    tcolor3 = 1187462;
    killbrown = True;
    killtan = True;
    xs= 122;
    xe= 637;
    ys= 136;
    ye= 474;
    var
    x,y: Integer;
    procedure killtchickens;
     begin
       AttackMonster(tcolor1,tcolor2,tcolor3,'Chicken',7);
       FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
       MMouse(x,y,1,1)
       If IsUpText('eather') then
       Mouse(x,y,2,2,True);
    end;
    procedure killbchickens;
     begin
       AttackMonster(bcolor1,bcolor2,bcolor3,'Chicken',5);
       FindColorTolerance(x,y,469253,xs,xe,ys,ye,5);
      MMouse(x,y,1,1)
    If IsUpText('eather') then
       Mouse(x,y,2,2,True);
    end;
    begin
       setupSRL;
         repeat
           If (Killtan = True) then
            begin
            killtchickens;
         end;
       If (KillBrown = True) then
         Begin
           killbchickens;
         end;
       until (false);
    end.
    Please Rep me if i helped!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Slayer vs Hunter
    By Riffe in forum Discussions & Debates
    Replies: 1
    Last Post: 10-16-2008, 02:58 PM
  2. Chicken slayer by edmaffs- Fixed by me
    By Julza in forum RS3 Outdated / Broken Scripts
    Replies: 259
    Last Post: 05-31-2008, 01:10 PM
  3. Madness Chicken Slayer
    By MylesMadness in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 01-19-2008, 10:36 PM
  4. Slayer script?
    By bandog in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 08-18-2007, 01:01 PM
  5. Slayer script?
    By bandog in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 08-18-2007, 09:37 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
  •