Results 1 to 3 of 3

Thread: Compass and Camera help needed OSR

  1. #1
    Join Date
    May 2012
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Compass and Camera help needed OSR

    Alright, so, I'm a complete amateur at everything scripting, please forgive me.

    All I'm trying to do is make the camera turn and bend to my terrible will. Mainly I just want it facing north. Both:
    Simba Code:
    P07_MakeCameraAngleHigh;
    and
    Simba Code:
    P07_MakeCompassNorth;
    have been giving me problems. Well ok not problems, I haven't even gotten them to budge the camera at all. Is there anywhere I can look to find out more about how to use these correctly?

    Any help is greatly appreciated!

  2. #2
    Join Date
    Mar 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    They need to be put under begin

    eg, you have

    Simba Code:
    Program asd;
    begin
    P07_MakeCompassNorth;
    P07_MakeCameraAngleHigh;
    end


    It'll only actually do that once logged into the game.. so atleast make sure your script can login.

  3. #3
    Join Date
    May 2012
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you for the reply Syden!
    Alright, so I tried this
    Simba Code:
    Program asd;
    {$i srl/srl.simba}
    {$I P07Include.Simba}
    begin
      ActivateClient;
      SetupSrl;
      P07_MakeCameraAngleHigh;
    end.

    I'm using a runescape tab instead of smart and I've dragged the crosshair over to the window. Is there something else I'm doing wrong? It compiles and says it executes though nothing visible really happens
    Last edited by Bobolopolis; 03-26-2013 at 07:13 PM.

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
  •