Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/15/18 in all areas

  1. GTA V Trucking EDIT: This project has been discontinued. Features: Cruise control (toggle by C) and basic player commands and basic admin system. Fuel system, gas stations all over the map, speedometer, wrong lane detector Banking System with ATMs all over the map and 4% PA interest rate. Trucking Missions, you can do trucking missions alone or in a convoy. Commands: /work : to start a mission /cancel : to cancel ongoing mission /stats /assistance : to flip truck trailer /id /pm : private message /ranks : See your truck driving rank based on experience, see /stats to see current rank /rules : server rules /reclass : choose different skin /bank : to see your bank account /detach : to detach a trailer /join : to join other player and form a convoy /leaveconvoy : to leave the convoy and start trucking independently /remove : to remove a player from convoy, only for the convoy leader Press C for toggling Cruise Control when inside a truck.
    1 point
  2. Version 1.0.0

    526 downloads

    This resource adds a way to make the local player hold a mugshot board with custom text on it, the custom text and animation won't be synced to others. You can also use this resource to understand how rendertarget system works which lets you display scaleform on certain game objects. Installing: Put policetext into your server's client_packages directory, then add require('policetext/index.js'); to index.js. Available functions/events: mp.players.local.mugshotboard.show -> mp.events.call("ShowMugshotBoard") -> Params: title, topText, midText, bottomText, rank = -1 mp.players.local.mugshotboard.hide -> mp.events.call("HideMugshotBoard") -> Params: - And you can access if the local player has a mugshot board or not by using the hasMugshotBoard global variable. Clientside example (pressing F10 will give your character a mugshot board, pressing it again will remove it): mp.keys.bind(0x79, false, () => { if (!hasMugshotBoard) { mp.players.local.mugshotboard.show(mp.players.local.name, "Top Text", "Mid Text", "Bottom Text", 15); } else { mp.players.local.mugshotboard.hide(); } });
    1 point
×
×
  • Create New...