Jump to content

Disabling specific player controls?


testing23

Recommended Posts

i'm trying to disable specific player controls, and I only want the player to be able to move and look around

 

i've tried using the DisableControl command (OBSE only) but it seems to be a bit buggy, because I can still talk to NPCs (with the result that i can't quit dialogue, because left mouse is disabled, too)

 

there has to be a better way to do this. :sad:

 

any ideas?

Link to comment
Share on other sites

If this situation of only being able to move and look around is within a controlled environment, such as one particular cell you made, then you could do it with really simple scripts.

 

SCN AANothingHappens

; Object script applied to all the objects and NPCs in your controled environment.
; SetStage AAMyQuest 25 was set when this mode of non-interaction began.

Begin OnActivate
    If Getstage  AAMyQuest == 25
          ; Nothing Happens!
    Else
         Activate
    EndIf
End

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...