Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/02/19 in all areas

  1. Version 0.1

    5535 downloads

    Simple noclip cam 🎥 🎮 Controls: F2 - Enable/Disable W/A/S/D/E/Q - Move cam Shift - Boost LCtr - Slowdown 🚀 Installation: Download .zip Move noclip folder to client_packages Add require('./noclip'); in root index.js
    1 point
  2. After purchase a Vehicle, my money is not taken and i dont got the Keys, but is says i Purchased & own it now. Edit: The Money were taken from my Bank account. PS: I would like to open the Inventory with "i", could somebody give a codesnipped for that?
    1 point
  3. I always get: (You can not park this vehicle), even if im the owner on a "public parking" place. and i just noticed, that i can fish where ever i want. I only need a rod and bite. There is no water requied to fish. ^^
    1 point
  4. ich würde 50 euro zahlen, mir könnt ihr gerne angebote zukommen lassen
    1 point
  5. Version 1.0.0

    224 downloads

    Here is the .woff version of the fonts of GTA 5 i could find on their website.
    1 point
  6. simple solution. block keybind when you already have cursor visible (which happens when you have chat or browser open as long as you did not change that😞 mp.keys.bind(0x45, false, function() { if (mp.gui.cursor.visible) return; here-you-would-open-browser-for-inventory-which-is-not-executed-if-cursor-is-displayed });
    1 point
  7. Version 0.0.2

    681 downloads

    This is a tool for using cameras. ONLY CLIENTSIDE; Using: const camerasManager = require('./camerasManager.js'); //creating camera /** @param {String} - camera name @param {String} - type camera @param {Vector3} - position @param {Vector3} - rotation @param {Number} - fov */ const kemperrr_camera = camerasManager.createCamera('kemperrr_the_best?', 'default', new mp.Vector3(0, 0, 100), new mp.Vector3(), 50); //destroy camera /** @param {Camera} - destroyed camera */ camerasManager.destroyCamera(kemperrr_camera); //get camera by name /** @param {String} camera name */ const kemperrr_camera = camerasManager.getCamera('kemperrr_the_best?'); //activate camera /** @param {Camera} - camera to activate @param {Boolean} - toggle */ camerasManager.setActiveCamera(kemperrr_camera, true); //deactivate camera /** @param {Camera} - camera to activate @param {Boolean} - toggle */ camerasManager.setActiveCamera(kemperrr_camera, false); //activate with interpolation /** @param {Camera} - camera to activate @param {Vector3} - where the camera will fly @param {Vector3} - New camera rotation @param {Number} - The time for which the camera will fly by @param {Number} - hz @param {Number} - hz */ camerasManager.setActiveCameraWithInterp(kemperrr_camera, new mp.Vector3(100, 200, 100), new mp.Vector3(0, 0, 90), 5000, 0, 0); //get gameplay camera const gameplayCamera = camerasManager.gameplayCam; mp.game.notify(JSON.stringify(gameplayCamera.getDirection())); //get current active camera const activeCamera = camerasManager.activeCamera; mp.game.notify(JSON.stringify(activeCamera.getCoord())); //events //an event is triggered when any camera starts interpolating camerasManager.on('startInterp', (camera) => { mp.game.notify(JSON.stringify(camera.getCoord())); }); //the event is triggered when any camera has completed interpolation camerasManager.on('stopInterp', (camera) => { mp.game.notify(JSON.stringify(camera.getCoord())); });
    1 point
×
×
  • Create New...