Results 1 to 3 of 3

Thread: knife procedure?

  1. #1
    Join Date
    Aug 2006
    Posts
    151
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default knife procedure?

    well im curently trying to add to my power cutter so i decided to add a fletching procedure that will cut logs then use knife with them to create shafts but i dont get what procedure to use for it would u use include xobject? and if so what would procedure be?
    also if i only wnat it to be able to be used for 1 acount i jsut put declare players and only put one in but if i want it to take brakes every hour or so how would i do that relativly new to scripting

  2. #2
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

  3. #3
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You could also do:

    SCAR Code:
    Procedure FletchShafts;
    Begin
      if(FindItemName('Knife'))then
        Begin
          Mouse(x,y,2,2,true);
          Wait(500+random(200));
          if(FindItemName('Logs'))then
            Begin
              Mouse(x,y,2,2,true);                     {You have to pick this color}
              Wait(1000+random(1000));                       |
              If(FindMSColorTol(x,y,Color Of The Big Bow In Chat Box,20))then
                Begin
                  MMouse(x,y,2,2);
                  if(IsUpText('letch'))then
                    Begin
                      Mouse(x,y,2,2,False);
                      ClickOption('X',3);
                      Wait(200+random(500));
                      SendText('30'+chr(13));
                      Repeat
                        Any Randoms You Have;             {Or whatever it says}
                        Any Other AntiBan You Have;              |
                        Until(IsChatMessage('You have run out of logs to fletch');
                    End;
                End;
            End;
        End;
    End;


    Or you can probably even do it easier by changing where it says
    SCAR Code:
    if(FindItemName('Knife'))then    {AND}    if(FindItemName('Logs')then

    TO

    SCAR Code:
    ClickItemName('Knife');    {AND}    ClickItemName('Logs');


    ↑ Hope all that helped you out!

    - Da Der Der
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Procedure TypeSendRandom & Procedure AutoResponder!
    By Ultra in forum Research & Development Lounge
    Replies: 12
    Last Post: 01-08-2008, 07:04 PM
  2. Replies: 8
    Last Post: 05-24-2007, 11:57 PM
  3. Procedure that calls random procedure?
    By Secet in forum OSR Help
    Replies: 2
    Last Post: 03-03-2007, 03:56 PM
  4. Knife Situation
    By hakmaster in forum Blogs and Writing
    Replies: 4
    Last Post: 02-21-2007, 08:45 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
  •