Results 1 to 3 of 3

Thread: Help a noob out please, probably easy fix

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

    Default Help a noob out please, probably easy fix

    I'm trying to setup reflection. All I've done is tried to make a login in script but it doesn't do anything. It loads smart and then just doesn't do anything. The script compiles fine and I got the most updated version of reflection through the github, I also downloaded the prosocks from the post. I don't know if I'm missing something or what, like do I need to install something else in the client?

    Simba Code:
    program new;
    {$DEFINE SMART}
    {$i reflection/Reflection.simba}

    var
      me: TReflectLocalPlayer;

    begin
      Reflect.Setup;
      me.Username := 'u';
      me.Password := 'p';
      me.Login;
    end.

    Oh, I just made it worse. Now it won't even load SMART I get this message over and over until Failed to spawn SMART CLIENT. SMART: Failed to pair - No Client by that ID.
    Hold up, force update fixed the smart not loading thing, nothing happens when smart loads still.

    sorry for the question, thanks for the help

    I had to add Active := true. now it works

    edit: [15:44:44:610] [Reflection] [Fatal] Failed to detect or load OSRS.
    but osrs loads fine in smart.
    Last edited by Walrus Rice; 10-30-2016 at 12:32 AM.

  2. #2
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    Remove your username and password

    Simba Code:
    program new;
    {$DEFINE SMART}
    {$i reflection/Reflection.simba}

    var
      me: TReflectLocalPlayer;

    begin
      Reflect.Setup;
      me.Username := 'user';
      me.Password := 'pass';
      me.Active := true;
      me.Login;
    end.

  3. #3
    Join Date
    Mar 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jstemper View Post
    Remove your username and password
    damnet.... Thanks haha

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
  •