diff --git a/README.md b/README.md index fe244b9..7f66e86 100644 --- a/README.md +++ b/README.md @@ -17,4 +17,16 @@ start wild-horses start wild-emote start wild-blips ``` -3. Go to `wild-core` and rename `_config.json` and `_players.json` to `config.json` and `players.json` \ No newline at end of file + +3. Rename the following files in their respective folders: + +| Folder | Current Filename | New Filename | +|-----------------|-----------------------------|-----------------------------| +| wild-core | `_config.json` | `config.json` | +| | `_honor.json` | `honor.json` | +| | `_npcs.json` | `npcs.json` | +| | `_player_outfits.json` | `player_outfits.json` | +| | `_players.json` | `players.json` | +| wild-horses | `_player_horses.json` | `player_horses.json` | +| wild-war | `_factions.json` | `factions.json` | +| wild-satchel | `_player_inventories.json` | `player_inventories.json` | \ No newline at end of file diff --git a/wild-core/client/cl_weaponWheel.lua b/wild-core/client/cl_weaponWheel.lua index e2ea12b..22c7e9d 100644 --- a/wild-core/client/cl_weaponWheel.lua +++ b/wild-core/client/cl_weaponWheel.lua @@ -54,15 +54,14 @@ Citizen.CreateThread(function() name = faction end - local str = CreateVarString(10, "LITERAL_STRING", text) + local str = CreateVarString(10, "LITERAL_STRING", name) SetTextColor(255, 255, 255, 255) BgSetTextColor(255, 255, 255, 255) SetTextFontForCurrentCommand(6) SetTextDropshadow(2, 128, 128, 128, 255) SetTextScale(0.7, 0.7) SetTextCentre(true) - - DisplayText(name, 0.85, 0.1) + DisplayText(str, 0.85, 0.1) end end end