Jaaaack Posted February 8, 2018 Share Posted February 8, 2018 Como q eu faço para desabilitar comandos do f1 Exp:Cv id, cv hunter, cv rhino, etc isso esta acabando com meu server me ajudem pfv ! Link to comment
Other Languages Moderators androksi Posted February 9, 2018 Other Languages Moderators Share Posted February 9, 2018 Você pode editar o fr_client.lua de seu Freeroam, retirando ou alterando os comandos. Pesquise por addCommandHandler dentro desse arquivo e vá alterando-o. Outra opção é criando um script que bloqueie tais comandos. local blockedCommands = { ["cv"] = true, ["createvehicle"] = true, } addEventHandler("onPlayerCommand", root, function(c) if (blockedCommands[c]) then cancelEvent() end end ) Link to comment
Other Languages Moderators Lord Henry Posted February 9, 2018 Other Languages Moderators Share Posted February 9, 2018 (edited) Se você tivesse procurado pelo fórum, encontraria sua pergunta já respondida aqui: https://forum.multitheftauto.com/topic/93890-mtasa-comandos-de-atalho-freeroam/?tab=comments#comment-844519 Edited February 9, 2018 by Lord Henry 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