myonlake Posted November 6, 2011 Share Posted November 6, 2011 (edited) Hello, Which original resource of MTA uses /me command? Asking because I want to remove it. Edited May 30, 2019 by myonlake Link to comment
^Dev-PoinT^ Posted November 6, 2011 Share Posted November 6, 2011 This is if you want Remove it removeCommandHandler ( "me" ) Link to comment
SDK Posted November 6, 2011 Share Posted November 6, 2011 You can't remove builtin commands. But you can disable the chat output: addEventHandler('onPlayerChat', root, function(message, type) if type == 1 then -- /me action cancelEvent() end end) Link to comment
myonlake Posted November 6, 2011 Author Share Posted November 6, 2011 You can't remove builtin commands.But you can disable the chat output: addEventHandler('onPlayerChat', root, function(message, type) if type == 1 then -- /me action cancelEvent() end end) Alrigthy, thanks. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now