Results 1 to 6 of 6

Thread: LongBow Fletcher Problems 2 XD

  1. #1
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default LongBow Fletcher Problems 2 XD

    All right thanks to some help from drizzt and whocares357 i fixed most of the errors in my script. i have added magic logs to the possible logs that can be cut and have included a form =). but the problem is the form.... idk how to imput the information from declare players into the form to start the script i have to put in the declare players and then the form will come up, but the username/pass/nick part of the script doesnt do a thing. i have put my srlplayerform in the main loop.

  2. #2
    Join Date
    Dec 2007
    Location
    Michigan, USA
    Posts
    280
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    here try this instead (copy'ed from my powercutter)
    SCAR Code:
    procedure DeclarePlayers;
    begin
      SRLPlayerForm(True, ['Use Sleeps', 'Use Responder'],
        ['Mouse Speed', 'Sleep How Often(minuets)', 'How Long To Sleep(minuets)'],
        ['Type Of Tree', 'SRL ID', 'SRL PASSWORD', 'Run Away Direction'], []);
      Mousespeed := Players[CurrentPlayer].Integers[0];
      SRLID := Players[CurrentPlayer].Strings[1];
      SRLPassword := Players[CurrentPlayer].Strings[2];
    end;

    And make this you main loop:
    SCAR Code:
    begin
     Credits;
     SetupSRL;
     //ScriptID := '?' No script id?!?!
     DeclarePlayers; //Does SRLForm in Declare instead
     DeclareDTMSAndBitmaps;
     If not LoggedIn then LoginPlayer;
     SetupRS;
     OpeningBank;
     Withdrawal;
     repeat
         SetupFletching;
         FindKnife;
         AbsentLogs;
         Fletching;
         Depositing;
         i:=i+1;
         if i mod 10 = 0 then
         Proggie;
         b:=b+1;
      until((b=(Players[CurrentPlayer].Integers[0])));
         FreeDTMS;
         Exit;
         TerminateScript;
    end.
    and also remove "MARKING" from your script caus you dont use it and it just says the hint thing which gets annoying to some people.
    Like the script btw. Hope it gets as good as foot's
    Kindof Inactive...

  3. #3
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    ty ,but i tried it out but still i doesnt explain how i should get the info from the written out declare like Player[0].username:= 'Blah' into the actual form.

    btw haha i forgot to register my script...ill get around to it sooner or later

  4. #4
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The usernames and passwords and stuff are already saved. If you want to see try this and you'll get the idea.

    SCAR Code:
    Program New;
    {.include SRL/SRL.scar}
    {.include SRL/SRL/Misc/Users.scar}

    Begin
    SRLPlayerForm(True, [], [], ['hello'], []);
    Writeln('Hello was ' + Players[0].Strings[0]);
    End.

  5. #5
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    would that work for like loggin in and loggin out? because when i fill out the username and pass in the player form it doesnt work =0. otherwise how would i specify the login sequence to log me in ?

  6. #6
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't know. I don't use the srl player form. I use mine. Look in public test corner (Player Manager BETA)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Any Longbow Fletcher
    By Richard in forum RS3 Outdated / Broken Scripts
    Replies: 6
    Last Post: 04-05-2008, 12:44 PM
  2. LongBow Fletcher Problems
    By FreakyMonkey in forum OSR Help
    Replies: 12
    Last Post: 03-21-2008, 08:58 PM
  3. Longbow Fletcher
    By Mugger in forum First Scripts
    Replies: 25
    Last Post: 03-04-2008, 09:04 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
  •