DeskLocked - hossimo/GMA3Plugins GitHub Wiki

DeskLocked() : bool

Paramiters:

Name Description Optional

Returns:

bool: true = Desk is locked bool: false = Desk is not locked ...

Examples:

    local locked = DeskLocked()
    if(locked) then
        Echo("Desk is locked")
    else
        Echo("Desk is unlocked")
    end