Jump to content

Kopra

Members
  • Posts

    534
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Kopra

  1. Kopra

    GEO flag

    There are priorities, just be patient, it's not that big of a deal anyways.
  2. 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
  3. Have you tried what Xabi said, disable CEF acceleration in launcher settings?
  4. You can also verify game files on Epic Games: How do I verify files for games on the Epic Games Launcher? - Bethesda Support Have you tried that?
  5. Reinstall Rockstar Games Launcher.
  6. If it's an option, try clean reinstall of windows. That will most likely be fastest way to get rid of an issue.
  7. If you have that issue in GTA Online also then it's most likely not related to RAGEMP. Try using google/youtube to find how other people solved it. You can also try to get help on RAGEMP discord. https://discord.gg/ragemp
  8. https://discord.gg/ragemp -> #troubleshooting / #support
  9. Try VPN or other internet conneciton.
  10. Try to get support from mod creators, based on what you explained your import method is good.
  11. Something on your PC could be blocking some of needed services. You can try to use VPN. If that works, contact your ISP to check why. I suggest you to join RAGEMP discord server, maybe someone already solved similar issue. https://discord.gg/ragemp
  12. Kopra

    draw-zone

    Very cool, great one!
  13. https://discord.gg/ragemp
  14. Kopra

    Dont work dlslist

    You can use order value in setup2.xml to define order of loading DLCs, I think dlclist is better used when you want to unload vanila dlcs, not really for determining the order of dlc load. Might be wrong on that one.
  15. Create an anti-spam like system for every button, register only 1 press per 0.5 sec or something like that, I had issue with mouse event being called twice, maybe try with @mousedown or @mouseup
  16. https://cdn.rage.mp/updater/prerelease/cef/libcef.dll Drop this .dll into your RAGEMP/cef. RAGEMP is folder where your client is installed.
  17. Kopra

    Error at launch

    Use task manager to close all background processes, disable windows defender and antivirus, or try another launcher(Rockstar social club or Steam)
  18. Kopra

    Rage mp fast crash

    No one will really download some random link some guy that just registered posted, put a video on some platform like streamable or youtube or describe your issue in details.
  19. You have example at begining. Bind store reference to window.store if not already.
  20. Modding the game is always an option, you can mod your game to use chinese everywhere + create custom chat with CEF, that should work good enough
  21. Allow ragemp-server.exe in your firewall and add exception in any anti-virus you may have. You can also try to open ports 22005 and 22006 if all else fails.
  22. I don't think that ping is accurate, have you tried joining the server and checking ping there if possible?
  23. Whenever destroying some entity it's good practice to use if(mp.entityPoolName.exists(entity)) On example from last post: let browser = mp.browsers.new('path/to/yourbrowser.html'); function destroyBrowser() { if(browser) { if(mp.browsers.exists(browser)) browser.destroy(); browser = null; } } Btw it's 1 year old post
  24. Kopra

    Server Crashes

    Start server with terminal or command prompt so when it crashes you still have shell screen open, then read error.
×
×
  • Create New...