Thanks
I hope this is not against the forum rules.
I'm afraid I'm out for testing purposes then - my character would literally be fresh off the boat.You'll need a character that can hack tonnes of dremoras to death.
Don't know if you can do that - but you could make it so they have some pretty lethal traps and an extremely high lock level for anybody trying to pick them.Does anyone know how to make a door so you can only use keys on it as it would make the mod to easy if you could pick doors.
Code: Select all
Begin "1Script_name_placeholder"
if
( GetItemCount "2My_Key_Id" > 0 )
"3My_Door_ID" -> Unlock
else
"3My_Door_ID" -> Lock, 0
endif
End "1Script_name_placeholder"
Code: Select all
Begin "1Script_name_placeholder"
if
( GetItemCount "2My_Key_Id" > 0 )
"3My_Door_ID" -> Unlock
else
"3My_Door_ID" -> Lock, 0
endif
End "1Script_name_placeholder"
Code: Select all
Begin MyDoorScript
Short DoorState
if ( OnActivate == 1 )
Set Doorstate to 1
endif
if ( DoorState == 1 )
If ( GetItemCount "key" < 1 )
Lock, 0
messagebox "text"
endif
endif
If ( Doorstate == 1 )
If ( GetItemCount "key" >= 1 )
Unlock
Set Doorstate to 2
Messagebox "text"
Endif
endif
End