Poll: Whose script is better?

Results 1 to 8 of 8

Thread: Mr_Bum...It's on!

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

    Default Mr_Bum...It's on!

    Quote Originally Posted by mr_bum View Post
    Wanna have a comp between me and u. Who can get a better proggy happening?
    So Mr_Bum wants to see whose script is better. So I thought I would add a little poll here to see what people think. *This is only for the kicks! Nothing serious out of this!* My script can be found Here or in my sig. I just did a variable update to my script so I had to change the stats Mr_Bums can be found Here. I'm running mine right now so I'll have a proggy later. I guess some of the categories could be:

    • Standards
    • Functionality
    • Complexity
    • Best proggy award
    • (Any other ideas?)


    So vote/post/test/or whatever else you can think of away!

    ~Camo
    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.


  2. #2
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I am going to show the errors for both of your scripts, and how to fix it.

    Camo Kyle script's error:
    InFight wont work right
    SCAR Code:
    Procedure IfFight;
    Begin
      If (FindFight) Then
      begin
        RunAway('E', False, 1, 1000 + Random(500));
        Inc(Fight);
      end;
    End;

    AntiRandoms should only be 4 lines long, and there out of order
    SCAR Code:
    Procedure AntiRandoms;
    Begin
      LampSkill := 'Woodcutting';
      FindNormalRandoms;
      EntFind;
      IfFight;
    End;

    WcRandoms is not needed

    DropAllExcept wont work, and the standereds aren't right
    SCAR Code:
    Procedure DropAllExcept(A : Array of Integer);
    begin
      For I:=1 To 28 Do
         if not(InIntArray(a, i)) then
         begin
           DropItem(i);
           Inc(Loads);
         end;
    end;

    Plus tons of your standereds are of in many places


    Mr_Bum script's error:
    GetLevel can be shortened
    SCAR Code:
    Procedure GetLevel;
    begin
      Level := GetSkillLevel('Woodcutting');
    end;

    Your antirandoms arn't right
    SCAR Code:
    Procedure AntiRandoms;
    Begin
      FindNormalRandoms;
      FindFightEx;
    end;

    FindTree can be shortened.
    SCAR Code:
    Procedure FindTree;
    begin
      If not(Loggedin)then Exit;
      FindFightEx;
      WCGained;
      LoadColors;
      MakeCompass('N');
      SetAngle(true);
      SetRun(true);
      For i:= 0 to (GetArrayLength(TreeColor) - 1) do
      begin
        WcGained;
        X := 234;
        Y := 172;
        if(FindObjCustom(x,y,['hop', 'own', (TreeType)],[TreeColor[i]],3)) or FindObjCustom(x,y,['hop', 'own', (TreeType2)],[TreeColor[i]],3) or FindObjCustom(x,y,['hop', 'own', (TreeType3)],[TreeColor[i]],3) or FindObjCustom(x,y,['hop', 'own', (TreeType4)],[TreeColor[i]],3) then
        begin
          Writeln('Serching For Tree');
          MMouse(x,y,2,2);
          if IsUpTextMultiCustom(['hop', 'own', (TreeType)]) or IsUpTextMultiCustom(['hop', 'own', (TreeType2)]) or IsUpTextMultiCustom(['hop', 'own', (TreeType3)]) or IsUpTextMultiCustom(['hop', 'own', (TreeType4)]) then
          begin
            Writeln('Found Tree');
            FindEnt(x,y,true);
            Mouse(x,y,2,2,true);
            Writeln('Cutting Tree');
            Wait(TreeWait +random(500));
            if (InvFull) then
              DropLogs;
          end;
        end;
      end;
      if(Found = False)then
        Exit;
    end;

    FindTree already drops, so why drop in the main loop?
    SCAR Code:
    Begin    //Camo Kyle Fixed my standards
      SetupSRL;
      DeclarePlayers;
      Sig;
      ActivateClient;
      LoginPlayer;
      If not Loggedin then LoginPlayer;
      Disguise('Power Cutter - By Mr_Bum');
      GetLevel;
      repeat
      begin
        FindTree;
        AntiBan;
        AntiRandoms;
        if Loads = DesiredLoads then NextPlayer(true);
      end;
      Proggy;
      until false
    end.

    Over all, I like Camo Kyle's. Also, if you two(or anyone else) wants scripting help add me on msn, mylesmadness@gmail.com

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

    Default

    Thanks Myles! That means alot coming from you, I'll fix it up based on what you told me. The Reason I had the WcRandoms is because I had too many in my AntiRandoms and it would lag. But now it should be fine. Adding you in the script for helping me too. Like I said, this only for fun.

    ~Camo
    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.


  4. #4
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    both need alot more to learn...

    though Camo kyle is awsome, love his attitude, and helps and i always see nice posts from him.

    havent seen bum doing stuff like that, or is it just me not reading his posts lol

    i saw both scripts.
    i got to give it to Camo Kyle's script.

    i like how bum made a DTM dropping proc. i suggested that to camo in his thread.

    bum's script is quite simple.
    and
    both of yall's chopping proc is quite simple imo.

    so yeah...
    CAMO KYLE ftw

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

    Default

    Thanks Joker. Means alot also, my first attempt at a script Mine searches for an axe in the inv, if no axe then it drops all the logs.

    ~Camo
    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.


  6. #6
    Join Date
    Jan 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I personally prefer yours (camo kyle). It just seems to work better.

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

    Default

    Thanks This is suprising...I thought mine was bad...

    ~Camo
    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.


  8. #8
    Join Date
    Nov 2008
    Posts
    202
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Camo Kyle View Post
    Thanks This is suprising...I thought mine was bad...

    ~Camo
    Lol? I've been telling you it's great for like a week, lmao xD

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Power Cutter - By Mr_Bum
    By Mr_Bum in forum First Scripts
    Replies: 39
    Last Post: 12-21-2008, 07:53 AM
  2. Draynor Willow Banker By Mr_Bum
    By Mr_Bum in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 12-12-2008, 12:04 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
  •