Results 1 to 9 of 9

Thread: how do u use srl???

  1. #1
    Join Date
    Jun 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default how do u use srl???

    i am new to srl and i am wondering how do i use it

  2. #2
    Join Date
    Apr 2006
    Location
    Melbourne
    Posts
    186
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default using SRL.

    I'm assuming you are not completly new to SCAR...

    SRL is just a whoppingingly large tremendously comprehensive "include"
    an "include", has commonly called procedures and functions that are used in scripting...
    before SRL... there was a nightmare of many different includes, different versions of a given include etc...

    The biggest tip to anyone trying to learn how to implement SRL into their scripting...

    Browse the SRL manual included in the download... get familiar with the functions and procedures SRL offers... then look at one of the scripts provided to see how it is used in practice. when SCAR is running... press Ctrl and Space at the same time... it will show the procedures available and their syntax... by including SRL... you will see that many more become available.

  3. #3
    Join Date
    Jun 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    where can i get srl includeds

  4. #4
    Join Date
    Feb 2006
    Location
    Las Vegas, NV
    Posts
    939
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    at the download right here
    http://82.92.130.193/forums/showthread.php?t=2023

    read the entire thing to know exactly what to do
    Busy with real life. I'll still be around occasionally.
    Current Mood:


  5. #5
    Join Date
    Jun 2006
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by phantombmx
    at the download right here
    http://82.92.130.193/forums/showthread.php?t=2023

    read the entire thing to know exactly what to do

    That of course, would be helpful if we were able to access it

  6. #6
    Join Date
    Feb 2006
    Location
    Las Vegas, NV
    Posts
    939
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    its ON the public forum.....
    Busy with real life. I'll still be around occasionally.
    Current Mood:


  7. #7
    Join Date
    Apr 2006
    Location
    Melbourne
    Posts
    186
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default hmmmm

    I'm tempted to re-register just to see how blatantly obvious the download looks like to a newcomer

    seriously though... we can't hold people's hands.

    I wouldn't re-register though to risk Fakawi's fiercesome wrath.

  8. #8
    Join Date
    Jun 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So while useing Scar all i have to do is Start script and go to SRL folder and select script

  9. #9
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This will help alot, probably.

    How to Download SRL
    Click the link.
    http://82.92.130.193/forums/showthread.php?t=2023
    *You must have WinRAR if you don't here's a link : http://www.rarlab.com/
    Scroll down and click this.

    Something should pop out. Click Ok, make sure you open with WinRAR.
    Pop put should be similar to this. Mine is just black because I picked a different theme.



    After it's finished downloading this should popout, then right click the SRL folder and click Extract like I have in this picture here.



    After that this should pop out. Extract it to C:\Program Files\SCAR 2.03\includes, then press ok. Here's picture for visual help.



    To double check that you have SRL included open Scar, then open includes and you should see it.

    After that Click the SRL folder, inside you should see this.



    And the rest of the directions are in picture above.

    Here's an example of using SRL.
    Code:
    program New;
    {.include SRL\SRL.Scar}
    //you have acess to everything in the core folder.
    
    procedure DeclarePlayers;
    begin
         StartPlayer:= 0;
         HowManyPlayers  := 1;              // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);
         CurrentPlayer:= StartPlayer;
    
         Players[0].Name :=''; //UserName
         Players[0].Pass :=''; //Password
         Players[0].Nick :=''; //Nick [3 - 4]letters
         Players[0].Active:=True; //True or False, Activity.
    
    end;
    
    begin
       SetUpSRL;
       DeclarePlayers;
       LoginPlayer;
       repeat 
          //Your script stuff here
       until(False)
    end.
    Just do a simple script using SRL include and you should be submitted if Fawki's in a good mood.

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
  •