vorp_weaponv2 npc turn and face player – Redm/CFX/LUA
In the client.lua line around line 692 you see this line local distance = #(coordsDist – coordsStore) if (distance <= 3.0) then — check distance Add this between those two lines. if distance >= 11.0 then — check distance Citizen.CreateThread(function()…
How do I add blips – RedM/CFX/Natives
It should look like this. Config.trigger_blip = true Config.blip_sprite = 1865251988 Config.blip_title = “My Blip” — https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/textures/blips_mp — https://github.com/femga/rdr3_discoveries/tree/master/useful_info_from_rpfs/textures/blips local LocationBlips = {} function AddBlip(X, Y, Z) if Config.trigger_blip == true then — config var to control the if blips…
vorp_weaponv2 store npcs floating Redm/CFX/LUA
When I load vorp_weaponv2 the store npcs are floating in the air. This is caused by the spawn height of your character when you connect to the server and the general timing of the store npcs spawning. The faster your…
I want to change the ticket prices?
Train Themed Fast Travel – FAQ – by Crafted By Little Dragons Instructions Open the config.lua file. Roughly line 17 to line 46 is the “Config.locations” array. The field is “cost” the default looks like this “cost=25”. Change the price…
I want to change the player’s landing location at a station.
Train Themed Fast Travel – FAQ – by Crafted By Little Dragons Instructions Open the config.lua file. Roughly line 17 to line 46 is the “Config.locations” array. The field is “landing” and the default looks like this “landing= {x= 2895.64,…