Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

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` |
5 changes: 2 additions & 3 deletions wild-core/client/cl_weaponWheel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down