act = false
maskodeta = false
function main()
while not isSampAvailable() do wait(300) end
sampRegisterChatCommand('amask', function() act = not act end)
while true do wait(0)
if act == true then
if maskodeta == false then
sampSendChat('/me натягивает балаклаву')
wait(1600)
sampSendChat('/do Балоклава одета.')
sampSendChat('/mask')
maskodeta = true
act = false
else
sampSendChat('/me снимает балаклаву')
wait(1600)
sampSendChat('/do Балоклава в руке.')
sampSendChat('/mask')
maskodeta = false
act = false
end
end
end
end