Results 1 to 4 of 4

Thread: Camera angle

  1. #1
    Join Date
    Apr 2012
    Location
    Canada, Bc
    Posts
    1,593
    Mentioned
    6 Post(s)
    Quoted
    356 Post(s)

    Default Camera angle

    I need my camera angle to face EAST.

    Here's the issue...
    You start the script facing east and everything works fine, but im on a laptop and will d/c and cause to relog in facing NORTH, I need it to then make the camera face EAST again.

    Any help appreciated.
    Edit:im terrible ik
    Last edited by Neznam; 04-11-2013 at 09:50 PM.

  2. #2
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Either add compass angle EAST to the beginning of each procedure, or in the mainloop do something like if not (whatever for camera angle, east) then make compass east
    You have permission to steal anything I've ever made...

  3. #3
    Join Date
    Apr 2013
    Posts
    395
    Mentioned
    1 Post(s)
    Quoted
    177 Post(s)

    Default

    Do you mean everytime you disconnect, you need to re-run the script again, or it auto login you back?

    If you mean everytime you run the script and you want it to face east, just do MakeCompass('E'); before the mainloop.

  4. #4
    Join Date
    Feb 2013
    Location
    Narnia
    Posts
    615
    Mentioned
    8 Post(s)
    Quoted
    252 Post(s)

    Default

    Code:
    program new;
    
    I$ blabla
    blala
    
    begin
    "what ever your code is"
    end;
    
    begin
    DeclarePlayer;
    SetupSRL;
    MakeCompass('E');    <--- basically add this, you could also repeat it down below so it always makes it east before begining your procedures
    if not loggedin then                                                            
    begin                                                                           
    loginplayer;                                                                    
    end;                                                                            
    repeat                                                                          
    "all your procedures or whatever" 
    until(some reason)
    terminatescript.
    end.

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
  •