Results 1 to 11 of 11

Thread: Fiery Cooky (Cooking script)

  1. #1
    Join Date
    May 2009
    Posts
    799
    Mentioned
    2 Post(s)
    Quoted
    16 Post(s)

    Default Fiery Cooky (Cooking script)

    Fiery Cooky

    Description:
    Cooks on A Fire. Currently only in Fallador (east bank).
    So it trains cooking and a bit Firemaking...
    It should detect Randoms.

    Setup:
    All the instructions are in the Script.

    Commentary:
    Ok.. so this is my second script with scar, it even uses SRL =)... It was supposed to cook the fish i got with my Fishing script... But I quickly needed to restock my fish ressources for debugging . And now I'm out of fish and gold and can't debug anymore xD.

    So Please post a proggy..
    Because i'd like to make it even better.

    For the Next Version:
    - Better raw check function
    - Removing some debugging messages
    - Multiplayer(maybe... dunno if a cooky really needs it)
    - More Antiban
    - Hopefully your suggestions =)


    Proggies:
    ++++++++++++++++++++++++++++++++++++++
    +Fiery Cooky+
    ++++++++++++++++++++++++++++++++++++++
    Running for: 35 Minutes and 36 Seconds
    18 loads done
    32270 cooking exp gained
    1 cooking levels gained
    ++++++++++++++++++++++++++++++++++++++
    -
    ++++++++++++++++++++++++++++++++++++++
    +Fiery Cooky+
    ++++++++++++++++++++++++++++++++++++++
    Running for: 9 Minutes and 15 Seconds
    5 loads done
    6480 cooking exp gained
    3 cooking levels gained
    ++++++++++++++++++++++++++++++++++++++
    Feedback is very welcome .
    Last edited by caused; 06-06-2009 at 07:14 PM.

  2. #2
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    In the program name, there can not be any spaces, so change this:
    SCAR Code:
    program Fiery Cooky;

    To this:
    SCAR Code:
    program FieryCooky;

    You can short this:
    SCAR Code:
    var
      c,d:integer;

      //globraw
      globraw:integer;

      //Bankcheck
      banktrue:boolean;

      //images
      cookall:integer;
      Howmanyfs:integer;
      lvl:integer;
      fire:integer;

      //proggy vars

      expstart:integer;
      timestart:integer;

      time:integer;
      exp:integer;
      loads:integer;
      level:integer;

    To this:
    SCAR Code:
    var
      c, GlobRaw, CookAll, HowManyFS, Lvl, Fire, ExpStart, Exp, Loads, Level: Integer;
      BankTrue: Boolean;

    Some things like this:
    SCAR Code:
    Until(RsReady = True);

    Can be shortened to this:
    SCAR Code:
    until(RsReady);

    Instead of this:
    SCAR Code:
    procedure Login;
    begin
      LoginPlayer;
    end;

    begin
      Login;
    end.

    You could just do this:
    SCAR Code:
    begin
      LoginPlayer;
    end.

    You should really learn how to use standards.


    4 post and 2 scripts, well done

    I fixed your standards.
    Last edited by Dark Arcana; 06-06-2009 at 06:09 PM.

  3. #3
    Join Date
    May 2009
    Posts
    799
    Mentioned
    2 Post(s)
    Quoted
    16 Post(s)

    Default

    Thanks... i already fixed some bugs...
    yeah stupid me... was so eager to release the script without a final test...
    well, it works well now and cooked 3000 fish flawless (50 mins runtime o-o)..

    Gotta add the update in a second ... Also changing the stuff you suggest, thanks!

  4. #4
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I hope you get the best newcomer cup
    Well very nice script, I might test this with my test account later.
    Last edited by Dark Arcana; 06-06-2009 at 06:10 PM.

  5. #5
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I have to say, these are great scripts! I'm so amazed at what you do with only 1 month of membership here!

  6. #6
    Join Date
    May 2009
    Posts
    799
    Mentioned
    2 Post(s)
    Quoted
    16 Post(s)

    Default

    Ah, thanks... I'm already working on some other scripts..

    and yeah... feel free to post proggies

    Here's the one from The Testrun.
    ++++++++++++++++++++++++++++++++++++++
    +Fiery Cooky+
    ++++++++++++++++++++++++++++++++++++++
    Running for: 5 Minutes and 35 Seconds
    3 loads done
    5110 cooking exp gained
    1 cooking levels gained
    ++++++++++++++++++++++++++++++++++++++

  7. #7
    Join Date
    Jun 2009
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this earned me 10 day ban

  8. #8
    Join Date
    May 2009
    Posts
    799
    Mentioned
    2 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by Beau View Post
    this earned me 10 day ban
    I'm sorry man.. I've had it running for multiple hours, and not even red marks...

    I Gotta add more antiban with the next version though...

    Did Someone report you ?, How long did the script run ?

  9. #9
    Join Date
    Dec 2009
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice, I might try this out soon. I need a good cooking script.

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

    Default

    Don't grave dig! Look at the date of the post...

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


  11. #11
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Closed.
    PM me when you update the script/want this opened again.

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
  •