Jump to content

Kopra

Members
  • Posts

    534
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Kopra

  1. Something is blocking your download, either software or network. If it doesn't work with VPN I suggest trying to disable all kind of virus and malware protection you have.
  2. Check if you have any of those software running, try to close everything else that isn't needed for GTA. - Discord Overlay - Steam Overlay - Nvidia Shadowplay - OBS Software - Overwolf - Antivirus Software - Streaming Software - MSI Afterburner - MSI Nahimic - ASUS Sonic Radar 3 - Razer Cortex - AI Suite 3 - GameFirst V - RivaTuner - Adguard - Microsoft Gaming Overlay (Also called 'Xbox Game Bar') - Sandboxie - Abusive software (E.g. cheats)
  3. https://cdn.rage.mp/updater/prerelease/cef/libcef.dll To RAGEMP/cef
  4. Buying some cheap VPS seems like most efficient solution. Your local server will work for you without port forwarding but any external connection won't work.
  5. Kopra

    Server Crashes

    With amount of information you provided only true psychic can help you. We need more information, help us help you.
  6. https://cdn.rage.mp/updater/prerelease/cef/libcef.dll To RAGEMP\cef
    I would rather use client-side procedure, but this can also be useful. Good job.
  7. C# serverside: NAPI.Server.SetCommandErrorMessage(string message) If you are using JS, you can use playerCommand event. PlayerCommand - RAGE Multiplayer Wiki
  8. It could be a lot of things, too detailed textures, too much polygons on your models, incorrect way of importing.. Unless you share your map or give more info not sure how can we help you.
  9. That should work, if it doesn't you can use if (mp.players.local.vehicle != null) { // your code }
    Cool
  10. Kopra

    Modules

    Nice
      • 1
      • Like
  11. https://cdn.rage.mp/updater/prerelease/cef/libcef.dll To RAGEMP/cef
  12. Check #troubleshooting channel on discord, keep your windows up to date and remove any software that could interfere that does the trick for most.
  13. Try searching for "weight". Pleb Masters: Forge - GTA V Objects, Vehicles, Clothes & more GTA-5 Hash list objects, cars with pictures, skins, weapons, animations | All Objects (gtahash.ru)
  14. Kopra

    Dronesytem

    Cool script and clean code. Great job!
  15. Launch Steam and download game “Brawlhalla”. After downloading the game Brawlhalla run it. After that you can easily run RAGE:MP and go to the server. Source: Error: Frequent startup problems (gta5grand.com)
  16. Most of the users don't have issue, almost always problem is very specific to user and his hardware and software. You can check #troubleshooting channel on discord and also browse and read through #support channels to see what other people with similar issue have tried.
  17. Kopra

    Story Robbery

    What do you mean where do they get it, you either make it yourself or you pay someone to do the job for you, there isn't public resource like this for RAGEMP that I know of. This script in total with server and clientside code has max 100 lines. EDIT: @Xabiwas faster 😴
  18. None of above examples worked so I share my: const REQUEST_ADDITIONAL_COLLISION_AT_COORD = "0xC9156DC11411A9EA"; export const getGroundCoords = (vector, tries) => { let groundZ; for (let i = 0; i < tries; ++i) { groundZ = mp.game.gameplay.getGroundZFor3DCoord(vector.x, vector.y, 1000, false, false); if (groundZ) { return new mp.Vector3(vector.x, vector.y, groundZ + 1); } else { for (let z = 1500; z >= 0; z -= 100) { mp.game.streaming.setFocusArea(vector.x, vector.y, z, 0, 0, 0); mp.game.streaming.requestCollisionAtCoord(vector.x, vector.y, z); mp.game.invoke(REQUEST_ADDITIONAL_COLLISION_AT_COORD, vector.x, vector.y, z); mp.game.wait(0); } groundZ = mp.game.gameplay.getGroundZFor3DCoord(vector.x, vector.y, 1000, false, false); if (groundZ) { mp.game.streaming.clearFocus(); return new mp.Vector3(vector.x, vector.y, groundZ + 1); } else { mp.game.streaming.setFocusArea(mp.players.local.position.x, mp.players.local.position.y, mp.players.local.position.z, 0, 0, 0); mp.game.streaming.clearFocus(); } } } return null; } const teleportToWp = () => { const waypoint = mp.game.ui.getFirstBlipInfoId(8); if (!mp.game.ui.doesBlipExist(waypoint)) return; const waypointPos = mp.game.ui.getBlipInfoIdCoord(waypoint); if (!waypointPos) return; const groundPos = getGroundCoords(waypointPos, 10); if (groundPos) { mp.players.local.position = groundPos; return; } mp.gui.chat.push("Ground Z could not be found, try another position."); }; mp.keys.bind(114/* F3 keycode */, false, () => { teleportToWp(); })
  19. You realize it's almost 3 years old post that you are replying to? It seems it died long time ago.
  20. Something is blocking connection, maybe firewall rule?
  21. Join GTA Online, game should auto update itself before.
×
×
  • Create New...