function requestAdminsList()
if not sampIsChatInputActive() and not sampIsDialogActive() and not sampIsCursorActive() and not adminsCheckerWaiting then
readyToSendCommand = true
commandReadyTime = os.clock()
requestAttempts = 0
end
end
if readyToSendCommand and os.clock() - commandReadyTime >= preCommandDelay then
if not sampIsChatInputActive() and not sampIsDialogActive() and not sampIsCursorActive() and not adminsCheckerWaiting then
adminsCheckerWaiting = true
adminsRequestTime = os.clock()
sampSendChat("/admins")
readyToSendCommand = false
else
readyToSendCommand = false
end
end