willyreallywonka Posted May 1, 2023 Share Posted May 1, 2023 Hello everyone. Recently I came across when working with a chat based on examples with the mp.invoke function. I looked through all the sites about working with CEF and raid and did not find a clear answer for what mp.invoke is needed and what is indicated for its use. I would be grateful if someone would describe in detail with links about this function. Link to comment Share on other sites More sharing options...
Kopra Posted May 1, 2023 Share Posted May 1, 2023 (edited) It's part of RAGEMP CEF API. Mostly used for chat, I'm not sure if there is a list of all invokes but here are some I've encountered: /*--From CEF--*/ mp.invoke(“focus”, true/false); // Enables/disables local player cursor in game mp.invoke("setTypingInChatState", true/false); // Used to set synchronized typing in chat state for local player (mp.players.local.isTypingInTextChat) mp.invoke("command", text); // Send command to server from local player mp.invoke("chatMessage", text); // Send chat message to server from local player Edited May 2, 2023 by Kopra grammar Link to comment Share on other sites More sharing options...
willyreallywonka Posted May 2, 2023 Author Share Posted May 2, 2023 13 часа назад, Kopra сказал: It's part of ragemp CEF api. Mostly used for chat, I'm not sure there is a list of all invokes but here are some I've encountered: /*--From CEF--*/ mp.invoke(“focus”, true/false); // Enables/disables local player cursor in game mp.invoke("setTypingInChatState", toggle); // Used to set synchronized typing in chat state for local player (mp.players.local.isTypingInTextChat) mp.invoke("command", text); // Send command to server from local player mp.invoke("chatMessage", text); // Send chat message to server from local player Thank you 1 Link to comment Share on other sites More sharing options...
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