GetLockUnlockDC
From NWN Lexicon
Contents |
[edit] GetLockUnlockDC(object)
Find a lock's unlock DC.
int GetLockUnlockDC( object oObject );
[edit] Parameters
oObject
The locked object.
[edit] Description
Returns an integer that indicates the unlock DC for the lock. If the object doesn't have an unlock DC then the function returns 0.
[edit] Version
1.22
[edit] Example
// This will return "door"'s Unlock DC void main() { object a; a = GetObjectByTag("door"); SendMessageToPC(GetFirstPC(),IntToString(GetLockUnlockDC(a))); }
[edit] See Also
functions: |
author: GoLeM, editor: Kristian Markon, Mistress