Results 1 to 3 of 3

Thread: lvl 3 powerminner idea

  1. #1
    Join Date
    Feb 2008
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    lvl 3 powerminner idea

    yo peeps. im new here i never got the tuts all over then net until i read the ultimate beginners guide. if you would like to give me some tips even add a bit of crap to it then what ever


    program LvlThreePowerMiner;

    const

    ore=(tin nuber)

    var
    x,y: Integer;

    procedure Minetin;

    begin

    FindColor(ore,x,y,0,0,500,500) // make sure to but in an ore color

    MouseSpeed := 9 (random(10)) //(I would never use anything below 6)
    FindColor(x,y,copper,0,0,100,100) //change 2 the runescape windo width //and shit
    Mouse(x,y,2,2,true (wont to make the mouse hold down for 500 millsecs)
    wait Wait(3000+random(1000))
    repeat until (27);

    (i wont to add droping the ore with antiban and randomes with run north if found fight)

    end;

    begin

    minetin

    end.

    any ideas to improve

    what do u think of it?

  2. #2
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Anti randoms? Antiban? Talkiing/Responding?

    Oh, and have you even included SRL?

    Declare players? There are plenty of things you can add in there. Auto coloring with auto colour this? Read the srl manual and click F1 when opening scar, those two manuals will help you a lot.
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  3. #3
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Good start, updated standards, I can't do your work for you sorry .
    But i've attached a better version which compiles .

    You might want to rep me by clicking the blue tick in the corner of my post

    SCAR Code:
    program LvlThreePowerMiner;
    {.include srl/srl.scar}

    var
    x,y: Integer;

    const
    copper = 856867; //Ore Color.

    procedure Minetin;
    var
    i : integer;
    begin
    MouseSpeed := 8 - Random (3)
      If FindColor(x,y,copper,MSX1,MSY1,MSX2,MSY2) then
       Begin
        repeat
          HoldMouse(x,y,true)
          wait(500+Random(200))
          ReleaseMouse(x,y,true)
          i := 1+1;
          Wait(3000+random(1000))
        until (i mod 27 = 0);
       end;
    end;



    begin

    minetin;

    end.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. powerminner...
    By thebob142 in forum First Scripts
    Replies: 6
    Last Post: 06-10-2008, 07:42 PM
  2. powerminner..
    By thebob142 in forum First Scripts
    Replies: 2
    Last Post: 04-28-2008, 03:11 AM
  3. My Updated Powerminner
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 18
    Last Post: 01-28-2008, 11:17 PM
  4. autocolor for powerminner
    By RudeBoiAlex in forum OSR Help
    Replies: 7
    Last Post: 03-20-2007, 06:35 PM
  5. My PowerMinner
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 11
    Last Post: 03-04-2007, 06:21 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
  •