Page 6 of 8 FirstFirst ... 45678 LastLast
Results 126 to 150 of 185

Thread: Home's Range Guilder [Build It On Your Own]

  1. #126
    Join Date
    Jan 2012
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    hello all I am rather new too scripting did a little bit of my own self editing/tweaking on scripts when power bot was up and running awhile back but that was C++ and that is a little different so tomorrow I'm going to read up on the script writing tuts and i will use this as my first self teaching projects although if anyone would like to offer some helpful advice on the coding of the anti-ban and the loops through PM it would be much appricated Thanks and Happy Hunting

  2. #127
    Join Date
    Mar 2010
    Location
    Palestine
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    RSBot is in java

  3. #128
    Join Date
    Jan 2012
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Code:
    program RangingGuild;
    
    {$DEFINE SRL5}
    {$DEFINE SMART}
    
    {$i SRL/srl.simba}
    {$i SRL/SRL/misc/paintsmart.simba}
    const
    RandAmount = 200;
    SWorld = 138;
    
    
    
    function FindArrows(var X, Y: Integer) :Boolean;
    var
      TPA: TPointArray;
      aTPA : T2DPointArray;
      MiddlePoint :TPoint;
      Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.03, 0.17);
    
      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 1781567, MIX1, MIY1, MIX2, MIY2, 8);
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 5, 5);
      SortATPAFromFirstPoint(aTPA, Point(0, 0));
      MiddlePoint := MiddleTPA(aTPA[0]);
      MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
      If WaitUpTextMulti(['ronze', 'rrow'], 250) then
      begin
        GetMousePos(X, Y);
        Result := True;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;
    
    function WaitArrow(var X, Y :Integer; Time :Integer) :Boolean;
    var
      T :Integer;
    begin
      If Not LoggedIn then Exit;
      MarkTime(T);
      while (TimeFromMark(T) < Time) do
      begin
        If Not LoggedIn then Exit;
        Wait(RandomRange(10, 25));
        if FindArrows(X, Y) then
        begin
          Result := True;
          Break;
        end;
      end;
    end;
    
    function WaitNPCText(Text :String; Time :Integer) :Boolean;
    var
     T :Integer;
    begin
      If Not LoggedIn then Exit;
      MarkTime(T);
      while (TimeFromMark(T) < Time) do
      begin
        If Not LoggedIn then Exit;
        Wait(RandomRange(10, 25));
        if FindNPCChatText(Text, Nothing) then
        begin
          Result := True;
          Break;
        end;
      end;
    end;
    
    function FindJudge :Boolean;
    var
      TPA: TPointArray;
      aTPA: T2DPointArray;
      MiddlePoint :TPoint;
      X, Y, Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.40, 0.06);
    
      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 6512479, MSX1, MSY1, MSX2, MSY2, 14);
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 20, 20);
      SortATPAFromFirstPoint(aTPA, Point(260, 32));
      Hi := Length(aTPA);
      for I := 0 to Hi - 1 do
      begin
        If Length(aTPA[I]) < 40 then Continue;
        MiddlePoint := MiddleTPA(aTPA[I]);
        MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
        If WaitUpTextMulti(['Competition', 'ompeti', 'Judge', 'udge'], 250) then
        begin
          ClickMouse2(False);
          If WaitOptionEx('alk', 'All', Nothing, 250) then
            begin
              If WaitOptionMulti(['Compete', 'ompete'], 250) then
                begin
                  Flag;
                  If WaitNPCText('Yes', 1500) then
                  begin
                    TypeSendEx('1', False);
                    If WaitArrow(X, Y, 3500) then Mouse(X, Y, 2, 2, True);
                  end;
                end;
    
              Result := True;
              Break;
            end;
        end;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;
    
    function FireTarget(var X, Y: Integer) :Boolean;
    var
      TPA: TPointArray;
      aTPA : T2DPointArray;
      MiddlePoint :TPoint;
      Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.15, 1.28);
    
      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 4672674, MSX1, MSY1, MSX2, MSY2, 2);    //5330874
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 20, 20);
      SortATPAFromFirstPoint(aTPA, Point(0, 0));
      MiddlePoint := MiddleTPA(aTPA[0]);
      MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
      If WaitUpTextMulti(['Fire', 'Target', 'arget'], 250) then
      begin
        GetMousePos(X, Y);
        Result := True;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;
    
    
    
    procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
    
      With Players[0] Do
      Begin
        Name        := '';     //Player username.
        Pass        := '';     //Player password.
        Active      := True;
      End;
    
    End;
    
    procedure SetupChar;
    begin
      LoginPlayer;
      //MakeCompass('e');
      setAngle(SRL_ANGLE_LOW);
      ToggleXPBar(True);
    
    end;
    
    procedure SpamMouse(var x, y: Integer; Time: Integer);
    begin
      If Not LoggedIn then Exit;
      HoldMouse(x, y, mouse_left);
      Wait(Round(Time / 1.2));
      ReleaseMouse(x, y, mouse_left);
      Wait(Time);
    end;
    
    procedure AntiBan;
      begin
      writeln('Choosing random antiban');
      case random(11) of
        0 : begin
            writeln('Random click selected');
            RandomRClick;
            end;
        1 : begin
            writeln('Random movement selected');
            RandomMovement;
            end;
        2 : begin
            writeln('Hover skill strength');
            HoverSkill(skill_strength,false);
            end;
        3 : begin
            writeln('Prayer tab selected');
            GameTab(27);
            Wait(randomrange(400,800));
            end;
        4 : begin
            writeln('Random Fkey selected');
            HoverSkill(skill_hitpoints,false);
            end;
        5 : begin
            writeln('Hover Skill (HP) selected');
            HoverSkill(skill_hitpoints,false);
            Wait(randomrange(300,600));
            end;
        6 : begin
            writeln('Game Tab stats selected');
            GameTab(23);
            end;
        7 : begin
            writeln('Pickup Mouse selected');
            PickUpMouse;
            end;
        8 : begin
            writeln('Random wait selected');
            Wait(randomrange(1000,2000));
            end;
        9 : begin
            writeln('Hover Skill attack selected');
            HoverSkill('attack',false);
            end;
      end;
    Wait(randomrange(500,1000));
    end;
    
    Procedure RAntiBan;
    begin
      Wait(randomrange(200,400));
      case random(RandAmount) of
        0 : begin
              writeln('Random Wait AntiBan');
              Wait(randomrange(1100,2500));
            end;
        1 : begin
              AntiBan;
            end;
      end;
    end;
    
    procedure Competition;
    var
     X, Y, C :Integer;
    begin
      If Not LoggedIn then Exit;
      while not FindNPCChatText('orry', Nothing) do
      begin
      FindJudge;
        If FindNPCChatText('standard', Nothing) then
          If WaitArrow(X, Y, 1500) then Mouse(X, Y, 2, 2, True);
    
        if FireTarget(X, Y) then
          SpamMouse(x, y, RandomRange(Players[CurrentPlayer].Integers[1], Players[CurrentPlayer].Integers[2]));
    
        if not DidClick(True, 30) then Inc(C)
        else
          C := 0;
        if (C >= 2) then CloseWindow;
        RAntiBan;
      end;
    end;
    
    procedure Startup;
    begin
      Smart_Server := SWorld;
      Smart_Members:= true;
      Smart_Signed := true;
      Smart_SuperDetail := false;
      SetupSRL;
      DeclarePlayers;
    
      MouseSpeed := 15;
      wait(100+random(100));
    end;
    
    
    begin
      Startup;
      SetupChar;
    
      repeat
        if not LoggedIn then
        begin
          LoginPlayer;
          ClickNorth(SRL_ANGLE_HIGH);
        end;
       competition;
      until(AllPlayersInactive)
    end.
    i cant figure out how to let him click on the fire range he after he get the 10 bronze arrows he is trying to get it again i already changet the collour of the fire range but still nothing can some one help me?

  4. #129
    Join Date
    Nov 2011
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by I am new View Post
    Might aswel, Couldn't find command to make compass northeast so I didn't add command to change angle, which means you have to login and set angle by yourself.

    Also attacks guards quite often so better baby sit it while running. Also If you really want to use it change some of the antibans so it will have inventory on so it may equip arrows given by judge.

    Oh and antiban was leeched from someone's script.





    Simba Code:
    program RangingGuild;

    {$DEFINE SRL5}
    {$DEFINE SMART}

    {$i SRL/srl.simba}
    {$i SRL/SRL/misc/paintsmart.simba}
    const
    RandAmount = 200;
    SWorld = 138;



    function FindArrows(var X, Y: Integer) :Boolean;
    var
      TPA: TPointArray;
      aTPA : T2DPointArray;
      MiddlePoint :TPoint;
      Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.03, 0.17);

      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 1781567, MIX1, MIY1, MIX2, MIY2, 8);
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 5, 5);
      SortATPAFromFirstPoint(aTPA, Point(0, 0));
      MiddlePoint := MiddleTPA(aTPA[0]);
      MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
      If WaitUpTextMulti(['ronze', 'rrow'], 250) then
      begin
        GetMousePos(X, Y);
        Result := True;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;

    function WaitArrow(var X, Y :Integer; Time :Integer) :Boolean;
    var
      T :Integer;
    begin
      If Not LoggedIn then Exit;
      MarkTime(T);
      while (TimeFromMark(T) < Time) do
      begin
        If Not LoggedIn then Exit;
        Wait(RandomRange(10, 25));
        if FindArrows(X, Y) then
        begin
          Result := True;
          Break;
        end;
      end;
    end;

    function WaitNPCText(Text :String; Time :Integer) :Boolean;
    var
     T :Integer;
    begin
      If Not LoggedIn then Exit;
      MarkTime(T);
      while (TimeFromMark(T) < Time) do
      begin
        If Not LoggedIn then Exit;
        Wait(RandomRange(10, 25));
        if FindNPCChatText(Text, Nothing) then
        begin
          Result := True;
          Break;
        end;
      end;
    end;

    function FindJudge :Boolean;
    var
      TPA: TPointArray;
      aTPA: T2DPointArray;
      MiddlePoint :TPoint;
      X, Y, Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.40, 0.06);

      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 6512479, MSX1, MSY1, MSX2, MSY2, 14);
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 20, 20);
      SortATPAFromFirstPoint(aTPA, Point(260, 32));
      Hi := Length(aTPA);
      for I := 0 to Hi - 1 do
      begin
        If Length(aTPA[I]) < 40 then Continue;
        MiddlePoint := MiddleTPA(aTPA[I]);
        MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
        If WaitUpTextMulti(['Competition', 'ompeti', 'Judge', 'udge'], 250) then
        begin
          ClickMouse2(False);
          If WaitOptionEx('alk', 'All', Nothing, 250) then
            begin
              If WaitOptionMulti(['Compete', 'ompete'], 250) then
                begin
                  Flag;
                  If WaitNPCText('Yes', 1500) then
                  begin
                    TypeSendEx('1', False);
                    If WaitArrow(X, Y, 3500) then Mouse(X, Y, 2, 2, True);
                  end;
                end;

              Result := True;
              Break;
            end;
        end;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;

    function FireTarget(var X, Y: Integer) :Boolean;
    var
      TPA: TPointArray;
      aTPA : T2DPointArray;
      MiddlePoint :TPoint;
      Hi, I, TempCTS :Integer;
    begin
      If Not LoggedIn then Exit;
      TempCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.15, 1.28);

      FindColorsSpiralTolerance(MSCX, MSCY, TPA, 4672674, MSX1, MSY1, MSX2, MSY2, 2);    //5330874
      If Length(TPA) = 0 Then Exit;
      aTPA := TPAToATPAEx(TPA, 20, 20);
      SortATPAFromFirstPoint(aTPA, Point(0, 0));
      MiddlePoint := MiddleTPA(aTPA[0]);
      MMouse(MiddlePoint.X, MiddlePoint.Y, 2, 2);
      If WaitUpTextMulti(['Fire', 'Target', 'arget'], 250) then
      begin
        GetMousePos(X, Y);
        Result := True;
      end;
      ColorToleranceSpeed(TempCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    end;



    procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      With Players[0] Do
      Begin
        Name        := '';     //Player username.
        Pass        := '';     //Player password.
        Active      := True;
      End;

    End;

    procedure SetupChar;
    begin
      LoginPlayer;
      //MakeCompass('e');
      setAngle(SRL_ANGLE_LOW);
      ToggleXPBar(True);

    end;

    procedure SpamMouse(var x, y: Integer; Time: Integer);
    begin
      If Not LoggedIn then Exit;
      HoldMouse(x, y, mouse_left);
      Wait(Round(Time / 1.2));
      ReleaseMouse(x, y, mouse_left);
      Wait(Time);
    end;

    procedure AntiBan;
      begin
      writeln('Choosing random antiban');
      case random(11) of
        0 : begin
            writeln('Random click selected');
            RandomRClick;
            end;
        1 : begin
            writeln('Random movement selected');
            RandomMovement;
            end;
        2 : begin
            writeln('Hover skill strength');
            HoverSkill(skill_strength,false);
            end;
        3 : begin
            writeln('Prayer tab selected');
            GameTab(27);
            Wait(randomrange(400,800));
            end;
        4 : begin
            writeln('Random Fkey selected');
            HoverSkill(skill_hitpoints,false);
            end;
        5 : begin
            writeln('Hover Skill (HP) selected');
            HoverSkill(skill_hitpoints,false);
            Wait(randomrange(300,600));
            end;
        6 : begin
            writeln('Game Tab stats selected');
            GameTab(23);
            end;
        7 : begin
            writeln('Pickup Mouse selected');
            PickUpMouse;
            end;
        8 : begin
            writeln('Random wait selected');
            Wait(randomrange(1000,2000));
            end;
        9 : begin
            writeln('Hover Skill attack selected');
            HoverSkill('attack',false);
            end;
      end;
    Wait(randomrange(500,1000));
    end;

    Procedure RAntiBan;
    begin
      Wait(randomrange(200,400));
      case random(RandAmount) of
        0 : begin
              writeln('Random Wait AntiBan');
              Wait(randomrange(1100,2500));
            end;
        1 : begin
              AntiBan;
            end;
      end;
    end;

    procedure Competition;
    var
     X, Y, C :Integer;
    begin
      If Not LoggedIn then Exit;
      while not FindNPCChatText('orry', Nothing) do
      begin
      FindJudge;
        If FindNPCChatText('standard', Nothing) then
          If WaitArrow(X, Y, 1500) then Mouse(X, Y, 2, 2, True);

        if FireTarget(X, Y) then
          SpamMouse(x, y, RandomRange(Players[CurrentPlayer].Integers[1], Players[CurrentPlayer].Integers[2]));

        if not DidClick(True, 30) then Inc(C)
        else
          C := 0;
        if (C >= 2) then CloseWindow;
        RAntiBan;
      end;
    end;

    procedure Startup;
    begin
      Smart_Server := SWorld;
      Smart_Members:= true;
      Smart_Signed := true;
      Smart_SuperDetail := false;
      SetupSRL;
      DeclarePlayers;

      MouseSpeed := 15;
      wait(100+random(100));
    end;


    begin
      Startup;
      SetupChar;

      repeat
        if not LoggedIn then
        begin
          LoginPlayer;
          ClickNorth(SRL_ANGLE_HIGH);
        end;
       competition;
      until(AllPlayersInactive)
    end.
    just trying to compete the match thats it.

  5. #130
    Join Date
    Dec 2011
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    LOl im an idiot, i found out what i was missing.
    Last edited by Drax; 01-27-2012 at 10:11 AM.

  6. #131
    Join Date
    Dec 2011
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    As above stated
    Last edited by Drax; 01-27-2012 at 10:12 AM.

  7. #132
    Join Date
    Dec 2011
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Surfing View Post
    As above stated
    There's no need to Double post,there is a EDIT button for a reason.

  8. #133
    Join Date
    Jan 2012
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    you know you gotta admit this is better than things like powerbot or rsbuddy even if it isnt as failsafe as. those things were leechable. here everyone gets sort of a setup but you do have to pull their own weight in some areas.

  9. #134
    Join Date
    Jan 2012
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow just giv us a script without hassle...

  10. #135
    Join Date
    Dec 2011
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Kosova View Post
    There's no need to Double post,there is a EDIT button for a reason.
    Yeah i know, that's why i used the edit button .

  11. #136
    Join Date
    Jan 2012
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Got it. Not telling of course. Thank you btw. But thats the great part about this community. No leechers well not really and no gold miners(that i know of). I don't post much and I'm quite new but thats what i've seen so far. I'm hoping maybe in a couple of weeks I'll have uploaded a few of my scripts :P

  12. #137
    Join Date
    Jan 2012
    Location
    America
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, I suck at Scripting, and I managed to get this to work fairly well within a half hour or so. This should be easy to work out for everyone! Great Job Home!

  13. #138
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Quote Originally Posted by jomomma257 View Post
    wow just giv us a script without hassle...
    Hahahaha, that made my day. Thank you.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  14. #139
    Join Date
    Jan 2012
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by vashanddou View Post
    better of learning, ive offered 200m rs cash for this script complete, no takers!? fuck ya, learning time.

  15. #140
    Join Date
    Dec 2011
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by ixonexus View Post
    better of learning, ive offered 200m rs cash for this script complete, no takers!? Fuck ya, learning time.
    lololol

  16. #141
    Join Date
    Jan 2012
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Surfing View Post
    lololol
    lolol fuck u gimme the script n i mite just consider paying u now..

  17. #142
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can any1 please make a toturial on how to set up this script?

  18. #143
    Join Date
    Nov 2011
    Location
    Jozi, South Africa
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That would be completely missing the point of why Home has done it this way.

    It's a script kit - with the key / main functions (with some less difficult ones for you to fill in). You have to put them together yourself . After that - you can post your completed script for critique. But who said that learning was easy.
    Last edited by NickMystre; 01-31-2012 at 10:50 AM.
    Ciao
    NM

  19. #144
    Join Date
    Jan 2012
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i wont learn how to make this script done because this sucks

    everyone go learn your schoolwork or go to work dont learn bull shit l0l

    just fking release the script.. why you dont want that ppl get 99 range or that they get banned just release

  20. #145
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Quote Originally Posted by wolkano View Post
    i wont learn how to make this script done because this sucks

    everyone go learn your schoolwork or go to work dont learn bull shit l0l

    just fking release the script.. why you dont want that ppl get 99 range or that they get banned just release
    Angry leech is angry.

    Seriously, scripting isn't hard.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  21. #146
    Join Date
    Dec 2011
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by GeZe View Post
    Can any1 please make a toturial on how to set up this script?
    made me lawl

  22. #147
    Join Date
    Nov 2011
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Script?

    hey home , great idea but you should really help the newbies out here!
    You should either make more of these ''make yourself scripts'' with ranges of easier to intermidate or type actually everything that has to be in there. Because no matter how many video's i watch or guides i create , i still don't understand what im missing most of the time and i know this is too stop leechers but i see it as a way to learn how to script so help out a little if you can

    Write everything that has to be in there and il try making it myself.

    thanks , il speak to you on msn sometime.

    Yours awsomely ,,,.

    Sable

    OH P.S. if anyone has time now and wants to help me , please send me a private message
    thhnxxx
    Last edited by Prevan; 01-31-2012 at 09:38 PM. Reason: beepo

  23. #148
    Join Date
    Nov 2011
    Location
    Puerto Rico
    Posts
    905
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Kyle Undefined View Post
    Angry leech is angry.

    Seriously, scripting isn't hard.
    lol ofcourse a master scripter would say scripting isnt easy but hey maybe its not but you got to remember not everyone has time to learn i go to school well am about to start school and work 2 part time jobs and they both suck lol i just been watching tuts its harder to learn this then all you guys say

  24. #149
    Join Date
    Jan 2012
    Location
    I live in Australia.
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey this is sortv'e like when you buy those half made cakes from the supermarket, you jsut gotta add water maybe an egg or so and a bit of butter. I really like it, the idea that is, never again will I add Antiban to my script, leeches can do that part.

  25. #150
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    Lol at all these dummy crying leeches. It takes literally less than 30 minutes to learn how you would assemble this, really all you have to do is assemble the mainloop and add small stuff like antiban...

    Cool idea Home.


    Then please show us "dummies" how to assemble this?

Page 6 of 8 FirstFirst ... 45678 LastLast

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
  •