Results 1 to 18 of 18

Thread: Nooby question...

  1. #1
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Nooby question...

    Hey guys, I know this might sound nooby, but for this SRL Anti-Randoms function:

    SCAR Code:
    {*******************************************************************************
    function SolveTalkingRandom(RawMenuText: String): Boolean;
    By: SRL Developers Team.
    Description: Talking Random Handler. Called by FindTalkingRandom. (FindTalk)
    *******************************************************************************}

    What do I put for RawMenuText? I've searched everywhere but I've failed to find it :S

  2. #2
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    just call findnormalrandoms and it should solve all randoms.

  3. #3
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh, I was just looking through it and didn't see anything specific to guard or especially samich lady. :P
    SCAR Code:
    function FindNormalRandoms: Boolean;
    var
      i: Integer;
    begin
      for i := 1 to 8 do
      begin
        case I of
          1: SolveNonTalkingRandoms;
          2: Respond;
          3: Result := FindTalk;
          4: Result := FindDead;
          5: Result := FindLamp(LampSkill);
          6: if FindBox then
              Result := SolveBox;
          7: Result :=  RC;
          8: Result := FindMod;
        end;
        if Result then
          Break;
        //Wait(1);
      end;
    end;

    You sure it does samich lady?

  4. #4
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    FindNormalRandoms; will find and solve all randoms, except for fighting ones (evil chickens, etc) You will need call a fight detector yourself


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  5. #5
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    3: Result := FindTalk; -> that takes care of sandwhich lady and stuff.

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    procedure AntiRandoms;
    Begin
      FindNormalRandoms;
      If FindFight Then runAway(parameters);
    end;
    ~Hermen

  7. #7
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright thanks guys! Sorry I'm just not the best with anti-randoms :P My script is almost finished! 1.1k lines so far =]

  8. #8
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Last question:

    What gas finding is the best? I used two in srl, got gas, and it broke my pick =[

  9. #9
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    The SKy Scripter's one have worked atleast before, but if not, you can pm Wizzup? and ask him if he'd be kind enough to give his gaschecker...

  10. #10
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright, I PM'ed wizzup?. BTW where is SkyScripter's?

  11. #11
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    In Mining.scar, it's the GasFound.

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

    Default

    Or FindGas by Piv

  13. #13
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ugh heres another question. Sometimes RadialRoadWalk will click down instead of up. Why??? It throws all the walking off..

  14. #14
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    maybe your compass angle is different than when you made the radial walk? or possible you chose an angle/radius too big that will allow it to walk back?

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  15. #15
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nope i had it 340 to 20, angle was north. It just, walked back.
    Extinct.

    Formally known as Drags111.

  16. #16
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by The[Cheese] View Post
    Nope i had it 340 to 20, angle was north. It just, walked back.
    Thats wrong, think it logically, should be: 340, 380


  17. #17
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I was JUST about to post that. I started making a new path using radial walking aid, and I put in my coords and It turns out if you are crossing the 360 spot you have to add +360. LOL I felt so dumb, and it explained EVERYTHING. Now I'm half way done with my new walking procedures =]

    EDIT: I just did a MineToBank walk and it worked out flawless! =]
    EDIT2: All walking fixed and working =] Running the script on SMART now
    Extinct.

    Formally known as Drags111.

  18. #18
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Cazax View Post
    Thats wrong, think it logically, should be: 340, 380
    You could also use -20, 20... I think :P

    Nava2
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Really Nooby Question
    By Peterabott in forum OSR Help
    Replies: 2
    Last Post: 02-23-2008, 03:45 AM
  2. Nooby Question
    By Geebly in forum OSR Help
    Replies: 3
    Last Post: 10-23-2007, 09:31 PM
  3. Dumb nooby question.
    By MeetmeDeath in forum OSR Help
    Replies: 2
    Last Post: 12-27-2006, 04:01 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
  •