Hello, I would be much grateful if anyone created me a asi file
You clearly need search.cs aswell.
does it necessarily have to be .asi?Hello, I would be much grateful if anyone created me a asi file;
I want my character/player to be not stunt when me was shot
local status = true
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('stun', function()
status = not status
printStyledString(status and 'Enabled' or 'Disabled', 1000, 4)
end)
wait(-1)
end
require('samp.events').onSendPlayerSync = function(data)
if status and data.animationId == 1084 then
data.animationFlags = 32772
data.animationId = 1189
end
end