function cursor()
local x, y = getScreenResolution()
local x = x / 2
local y = x / 2
-- local x = x - 100
local y = y - -70
local result, lib = loadDynamicLibrary("user32.dll")
if result then
local result, proc = getDynamicLibraryProcedure("SetCursorPos", lib)
local a = callFunction(proc, 2, 0, x,y)
freeDynamicLibrary(lib)
end
end