0 of 0

File information

Last updated

Original upload

Created by

Grizlee11

Uploaded by

grizlee11

Virus scan

Safe to use

Tags for this mod

About this mod

Unlock any door that stands on your way.

Requirements
Permissions and credits
Description
This mods allows you to open locked doors without any key. You only need to type "ToggleLock" in console, while interaction button is visible. 

Installation
Move folder "modDoorUnlocker" to "<game_path>\mods".

Additional info
This mod adds new function in "game\player\playerCheats.ws". 
Full code:
exec function ToggleLock()
{
var door  : W3LockableEntity;
door = (W3LockableEntity)theGame.GetInteractionsManager().GetActiveInteraction().GetEntity();
door.ToggleLock();
}
  翻译: