Results 1 to 4 of 4

Thread: SetupSRL doesn't work

  1. #1
    Join Date
    Mar 2011
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default SetupSRL doesn't work

    Hey guys,

    I'm having a problem with logging in. It seems as if SetupSRL; never gets completed. I was wondering what I'm doing wrong.

    Simba Code:
    program New;
    {$i srl/srl/misc/smart.scar}
    {$i srl/srl.scar}
    {$i reflection/reflection.simba}

    const
      WORLD = 14;
      MEMBERS = false;
      SIGNED = true;

    Procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      Players[CurrentPlayer].Name := 'name';
      Players[CurrentPlayer].Pass := 'd'
      Players[CurrentPlayer].Nick := ''
      Players[CurrentPlayer].Active := True;
      Players[CurrentPlayer].Pin := '';
    End;

    begin
      Smart_Server := WORLD;
      Smart_Members := MEMBERS;
      Smart_Signed := SIGNED;
      Smart_SuperDetail := False;
      ClearDebug;
      writeln('cleared debug');
      SetupSRL;
      writeln('setupsrl');
      SetUpReflection;
      writeln('setup reflection');

      DeclarePlayers;
      writeln('declared');
      LoginPlayer;
      writeln('loggedin');
    end.

    thanks guys

  2. #2
    Join Date
    Feb 2009
    Location
    Irvine, CA
    Posts
    2,873
    Mentioned
    8 Post(s)
    Quoted
    138 Post(s)

    Default

    I copy/pasted your script. Worked fine.
    Progress Report:
    cleared debug
    SRL Compiled in 0 msec
    SMART Initialized.
    Loaded: Server 14, Members: False, Signed: True, Super Detail: False.
    setupsrl
    setup reflection
    declared
    Welcome to Runescape.
    Name
    'Invalid Username / Password'
    Name

  3. #3
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    Helped him with the problem on irc all good
    Click here to find out how to get full screen without members! | Click here to check out my Ultimate Bitmap Tutorial! Edited to work with Simba! |

  4. #4
    Join Date
    Mar 2011
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    /thread
    thanks cycro and others on irc

    srl doesn't setup if rs window is set on resizable

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
  •