Results 1 to 4 of 4

Thread: smithing/smelt x number

  1. #1
    Join Date
    Jul 2010
    Location
    Western US
    Posts
    387
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default smithing/smelt x number

    I am wondering if srl has a smithing function? I am also wondering how I can say smelt x number of bars, or x number of whatever. (i.e. enter 88 and hit return). I have searched, but I must not be searching for the right thing.
    Of all the things I have lost, I miss my mind the most.
    Current Projects:
    Addy bar miner and superheater

  2. #2
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Check smithing.scar. In Includes/SRL/SRL/skill/. Also, to enter a number, TypeSend(IntToStr(28 + Random(71)));. Will type a random number between 28 and 99 and press enter. ChooseOption('something'); to choose an option when you right click.

    If you want more help, panic._@live.com

  3. #3
    Join Date
    Jul 2010
    Location
    Western US
    Posts
    387
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Thank you. the TypeSend(IntToStr(28 + Random(71))); is what I was looking for. there is a problem though, and that is it types it too fast and sometimes does not get the second digit. TypeSend(IntToStr(88)); is what I am using, and sometimes I only get 8 instead of 88.
    Of all the things I have lost, I miss my mind the most.
    Current Projects:
    Addy bar miner and superheater

  4. #4
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    It could be that all you're getting is the second '8'. Try putting a delay before the TypeSend.

    SCAR Code:
    Wait(250 + random(250));
    TypeSend(IntToStr(88));

    If this fails you could always perform a little check with FindText.

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

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
  •