Results 1 to 6 of 6

Thread: Senju Goldsmith

  1. #1
    Join Date
    Apr 2012
    Posts
    157
    Mentioned
    10 Post(s)
    Quoted
    57 Post(s)

    Default Senju Goldsmith

    This script is pretty simple and straightforward.

    It withdraws gold Ore from the bank, and will smelt it into bars, and then craft those bars into gold bracelets.

    Why gold bracelets? Gold bracelets, although slightly less Experience per bracelet, is worth significantly more than a gold bar, and only slightly less than a gold ore. Minimizing loss, while still giving pretty decent exp in both smithing, and crafting.

    It would not be very hard to modify the script to only craft bracelets, but that's up to you to do if you'd like to get the bars yourself. If I continue development on the script, I would add more items available to craft, or the option to toggle just crafting of the bracelets.

    Start the script anywhere between Edgeville Bank and the Edgeville furnace, and it will do the rest.

    Script has antiban, and break system.

    Many thanks to Ashman, DannyRS, and a few others who are noted in the script where code was modified, or learned from.
    Attached Files Attached Files

  2. #2
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Congrats on the release!

  3. #3
    Join Date
    Dec 2010
    Location
    Humboldt, TN
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Crazy excited about this one! I just got mining from Ashaman's lrc script, lol.

    I am getting an access violation error, though, at line 78:
    SMART_CANVAS.FastDrawClear(0);

  4. #4
    Join Date
    Apr 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Looking forward to the progression of this script. Currently maxing mining with lrc miner. I have quite a bit of gold ore, and I'll have much more when I'm done. I'll definitely be using this to get crafting with the gold ore
    “When nobody will look at you, you can stare a hole in them. Picking out all the little details you'd never stare long enough to get if she'd ever just return your gaze, this, this is your revenge.” - Chuck Palahniuk

  5. #5
    Join Date
    May 2013
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    background: i used another script to smelt the bars, now i have 20k i need to make into bracelets.
    problem: being very new to simba and the whole scripting process in general, can somebody help me skip/disable the ore smelting section, and help me set up the bracelet making part? please and thanks!

  6. #6
    Join Date
    Apr 2012
    Location
    Land of the Rising Sun
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    77 Post(s)

    Default

    Quote Originally Posted by ununnilium View Post
    background: i used another script to smelt the bars, now i have 20k i need to make into bracelets.
    problem: being very new to simba and the whole scripting process in general, can somebody help me skip/disable the ore smelting section, and help me set up the bracelet making part? please and thanks!
    The easiest way would probably be to delete this from the main procedure (lines 1086 -1101):

    Simba Code:
    if FindDTM(GoldOreDTM, x, y, MIX1, MIY1, MIX2, MIY2) then
      begin
        if Debug then
          WriteLN('Found Gold Ore in Inventory, Running to Furnace');

        RunToFurnace;
        FindFurnace;

        FindDTMs(GoldOreDTM, TPA, MIX1, MIY1, MIX2, MIY2);
        FilterTPADist(TPA, 30);
        GoldBarsCrafted:= GoldBarsCrafted + Length(TPA);

        CheckCraftBar;
        CraftButton;
        Wait(RandomRange(1000, 1500));
      end;


    Then change line 874 in the banking procedure from
    Simba Code:
    FindDTM(GoldOreDTM, X, Y, MSX1, MSY1, MSX2, MSY2);
    to
    Simba Code:
    FindDTM(GoldBarDTM, X, Y, MSX1, MSY1, MSX2, MSY2);

    so it withdraws the bars instead of the ores.
    My Scripts: DWT Iron Miner

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
  •