GetLockLockDC(object)

Find a lock's lock DC.

int GetLockLockDC(
    object oObject
);

Parameters

oObject

The locked object.


Description

Returns an integer that indicates the lock DC for the lock. If the object doesn't have a lock DC then the function returns 0.



Version

1.22

Example

// This will return "door"'s lock DC
void main()
{
    object a;
    a = GetObjectByTag("door");
    SendMessageToPC(GetFirstPC(),IntToString(GetLockLockDC(a)));
}

See Also

functions: SetLockLockDC | GetLockUnlockDC | SetLockUnlockDC
categories: Get Data Functions | Get Data from Object Functions


 author: GoLeM, editor: Kristian Markon, Mistress