local memory = require 'memory'
local standart = memory.getfloat(0x8D2E64)
local act = false
function main()
sampRegisterChatCommand('spread', function()
act = not act
sampAddChatMessage('No spread '..(act and 'Enable' or 'Disable'), -1)
memory.setfloat(0x8D2E64, (act and 0 or standart))
end)
wait(-1)
end