Results 1 to 6 of 6

Thread: script toutrial

  1. #1
    Join Date
    Oct 2008
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default script toutrial

    i would like it if someone could post a powerminer tut but instead make it like this
    either attached or whole thing in tags
    SCAR Code:
    program powerminer;   //this is that the whole program is going to be about
    {.include SRL/SRL.scar}  //this tells the script to include SRL(can you put this here or not because it acctually has the { }
    const
    rock1= ' '//1 of the colours you would like to mine, put the number betweeen the '  ' get from using colour picker(default ctrl+p)
    i just find it easier then in parts write a simple powerminer then explain what each part means thank you
    thanks
    i hope i dont get my bro into trouble hamgooof is his runescape name mines something else

    can u PM me the link or post here if you've done in another thread, thank you
    ~~ziggy~~
    if anyone would mind teaching me over MSN how to make scripts please copy and paste:
    zimmermannjake@hotmail.com
    thank you

    also will test scripts just send them to me and instructions

  2. #2
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    look at Mining.scar

    it's got a few helpful functions, like FindRock
    Project: Welcome To Rainbow

  3. #3
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i wrote one in beginners tutorials, i dunno if its any good though :/ its more step by step then the way your asking for, but it should do the trick hopefully.
    “Ignorance, the root and the stem of every evil.”

  4. #4
    Join Date
    Oct 2008
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk thanks will look, but if any1 does make 1 please say because thats the sort of way i learn things
    ~~ziggy~~
    if anyone would mind teaching me over MSN how to make scripts please copy and paste:
    zimmermannjake@hotmail.com
    thank you

    also will test scripts just send them to me and instructions

  5. #5
    Join Date
    Oct 2008
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program Powerminer;

    {.Include SRL\SRL.SCAR}
    Var
    x,y :integer;
    Const
    rock1= 456467;//this IS a random number use the colour picker for real colours
    rock2= 564564;//same as above
    waittime= 5789;//time to wait
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      Players[0].Name := 'myuseris';
      Players[0].Pass := 'mypasswordis';
      Players[0].Nick := 'eris'; //3-4 LETTERS from name  like i did myusERIS
      Players[0].Active:= True;
    end;
    procedure PreparePlayer;
    begin
      if not LoggedIn then LoginPlayer;
    end;

    Procedure Randoms;
    Begin
    FindNormalRandoms;
    End;


    procedure AntiBan;
    begin
      if not LoggedIn then Exit;
      begin;
      case (Random(30)) of
        1: HoverSkill('mining', False);
        2: RandomMovement;
        3: PickUpMouse;
        4: begin
             Gametab(1 + Random(5));
             Gametab(4);
            end;
        30: SleepAndMoveMouse(300);
      end;
    end;


    program minerock;
    Begin;
     if(not(LoggedIn)) then LoginPlayer;
     







     Procedure oredropping;
    Var
         i: Integer;
    Begin
         If Not (LoggedIn) Then Exit;
         GameTab(4);
         For i := 2 To 28 Do
              Begin
                   If ExistsItem(i) Then
                        DropItem(i);
                        writeln('ores are dropped');
              End;
    End;

    but in the procedure mine rock how to i make it to click rock1 or rock2?
    ~~ziggy~~
    if anyone would mind teaching me over MSN how to make scripts please copy and paste:
    zimmermannjake@hotmail.com
    thank you

    also will test scripts just send them to me and instructions

  6. #6
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    double post... not good

    try to use EDIT button
    Project: Welcome To Rainbow

Thread Information

Users Browsing this Thread

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

Posting Permissions

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