function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('pass', pass)
while true do
wait(0)
end
end
function pass(arg)
lua_thread.create(function()
if arg ~= nil then
sampSendChat('/me достал из кармана паспорт')
wait(1500)
sampSendChat('/do паспорт в руке')
wait(1500)
sampSendChat('/me передал паспорт человеку напротив')
wait(1500)
sampSendChat('/showpass '..tonumber(arg))
else
sampAddChatMessage('Неверный id')
end
end)
end