Jump to content

Leaderboard

Popular Content

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

  1. Parking spots for vehicles in GTA5. There are over 1,500 entries. It's very well spread across the whole map. Includes parking lots, side street parking, etc. It's NOT a complete list. It's NOT a perfect list! No emergency, no military, and no police vehicle spawns. There are a few boat spawns. There are heli, and possibly plane spawns. There may be entries were vehicles are parked at a gas station, at a stop light, or in the middle of the street, but these cases are rare and cleaning them up shouldn't be too painful. Grab the json data file here: https://github.com/Kthksdie/GTA5-SpawnPoints_Vehicles/
    1 point
  2. Version 1.1.0

    532 downloads

    Hello, I thought it would be a opportunity to introduce some basic scaleform scripts that would help out some users with their development aka. use less CEF for simple stuff. This resource introduces the ability to give button instructions that supports controls (Meaning it'll detect your input whether its a gamepad or keyboard...). API You can always have a look at the Controls to get their ID. Using the resource is very simple to use and it supports different uses of customization: You can adjust style between Horizontal (1) and Vertical (-1) You can adjust background color with RGBA (Note you'll need to add it in array form) or HEX. Bulk support for buttons. new hud(style, color) /* * style: -1 for horizontal view, 1 for vertical view * color: HEX or RGBA [255, 255, 255, 255] */ hudClassInstance.addButton(title, controlID); /* * title: any text * controlID: you can find a list of controlID on wiki */ hudClassInstance.addButtons({ anyName: controlID1, anyName2: controlID2 }); /* * Bulk support for adding buttons */ hudClassInstance.removeButton(titleOrControlID); /* * titleOrControlID: remove button by its title or controlID */ hudClassInstance.removeButton(titleOrControlID); /* * removes all buttons */ hudClassInstance.toggleHud(state); /* * state: Boolean toggling visibility */ hudClassInstance.changeStyle(style); /* * style: -1 for horizontal and 1 for vertical */ hudClassInstance.setBackgroundColor(color); /* * color: HEX string or RGBA Array */ hudClassInstance.changeButtonTitle(index, newTitle); /* * index: controlID or currentButton title. (if custom button you can type its name t_buttonName) * newTitle: string */ hudClassInstance.changeButtonControl(index, newControl); /* * index: controlID or currentButton title. (if custom button you can type its name t_buttonName) * newControl: controlID or custom control (t_buttonName) */ If you have any issues, you know as usual contact me on Forums or discord. Any suggestions please add it in your review. If you liked the resource show me your support to produce some useful resources in the future.
    1 point
  3. Hallo, wenn ich bei Ragemp auf einen Server joinen möchte kommt diese Meldung. "Error: Your game version is not supported by Rage Multiplayer. Please upgrade to 1.46 (5 Feb 2019) inm order to continue playing. Try veryfing Steam cache (for Steam) or running PlayGTAV.exe (for Social Club version)" Ich hab schon alles versucht und da ich heute GTA V zum ersten mal installiert hab auf dem Pc kann kein Update fehlen. Ich hoffe einer von euch kann mir helfen.
    1 point
  4. Yes, setBlackout stopped working due to a RAGEMP update. You'll have to use lights API (at least for now): /* state true = disable light index state false = enable light index */ for (let i = 0; i <= 16; i++) mp.game.graphics.setLightsState(i, state);
    1 point
  5. Может стоит скинуть сюда кусок кода отвечающий за создание дома, и, возможно, тогда тебе помогут? 😬
    1 point
×
×
  • Create New...