Results 1 to 6 of 6

Thread: Level up while smithing

  1. #1
    Join Date
    Aug 2008
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Level up while smithing

    Hi,
    I'm making an auto-smither in Al-Kharid and I'm using:
    Code:
    Smelt('Bronze', '14');
    But because my level is so low I keep getting a 'You just advanced to the next level' thing in the chat box. Whenever that happens it stops smithing, so I go back to the bank with only 5 or 6 bars made, instead of 14.

    Could anyone possibly help me with this?

    Thankyou in advance!

  2. #2
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    ClickContinue(true, true);

    This will click the continue message, if this happens you need to tell your script to do the process again. I believe ClickContinue is a Boolean.
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  3. #3
    Join Date
    Jul 2007
    Location
    Mo-Town
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I got this from DrayNps Willow cutter (buy twisted) but you would need to add something in anti ban or whatever that while it is smithing it does this

    SCAR Code:
    If FindNPCChatText('ongratul',Nothing) then
    begin
      ClickContinue(True, true);
      Writeln('GAINED A LEVEL') //Optional
    end;

    EDIT: Oh No Narcle beat me
    Quote Originally Posted by Napolean
    In Politics, Stupidity is Not a Handicap
    Quote Originally Posted by Unknown
    Marriage is like a bank. You put it in, Pull it out, then lose interest.

  4. #4
    Join Date
    Aug 2008
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm still a little noobish to scripting, but should I use a 'do...while' kind of thing.
    Would it work?

  5. #5
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    While ClickToContinue(True, False) Do
      Smith

    something like this I think.

  6. #6
    Join Date
    Aug 2008
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hi again,
    I just figured it out, Smelt('Bronze', '14'); is just the instruction to smelt, so I tried this:

    Code:
    repeat
    if (ClickContinue(False, False)= True) then
    Begin
    ClickToContinue;
    Wait(1000);
    FindFurnace(x, y);
    Mouse(x, y, 3, 3, False);
    Wait(1000);
    ChooseOption('melt');
    Wait(1000);
    Smelt('Bronze', '14');
    End;
    Thanks alot for trying guys

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Trying to get 85 Smithing~ Which method is Better!?
    By nobody u kno in forum RuneScape News and General
    Replies: 5
    Last Post: 05-17-2008, 02:40 PM
  2. JADDummy! will level you from any level to 8 :p
    By JAD in forum RS3 Outdated / Broken Scripts
    Replies: 23
    Last Post: 01-28-2008, 02:51 AM

Posting Permissions

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