New version supports spawning random male/female horses and more spawn chance configuration options
A | B |
---|---|
Code is accessible | Yes |
Subscription-based | No |
Lines (approximately) | 500 |
Requirements | VORP |
Support | Open Source |
New version supports spawning random male/female horses and more spawn chance configuration options
A | B |
---|---|
Code is accessible | Yes |
Subscription-based | No |
Lines (approximately) | 500 |
Requirements | VORP |
Support | Open Source |
Version 1.2.0 released that adds the option to randomly spawn more than 1 horse. Max number of horses is configurable.
I am trying to add some horses from SireVLC, such as the Fresian and others, that have special coats attatched to the model string. IE. For the Black Fresian it is a_c_horse_tennesseewalker_chestnut as the model, and special coat is horse_special_friesian_black. How do I add this?
Unfortunately, the script doesn’t support custom horses from SireVLC. It is limited to the horse models and outfits/coats available in the base game.
I am only getting the same horsecoat type at each spot. I have updated the Config.RespawnDelay to spawn faster and spawnChance = 7 and maxHorses = 5. Im not too sure what else to do.
It randomizes what model it pulls based on the how many you have listed. Like for Arabians, there are several models you could list:
horses = {
a_c_horse_arabian_black
,
a_c_horse_arabian_grey
,
A_C_Horse_Arabian_RedChestnut
,
A_C_Horse_Arabian_RedChestnut_PC
,
a_c_horse_arabian_rosegreybay
,
A_C_Horse_Arabian_WarpedBrindle_PC
,
a_c_horse_arabian_white
,
a_c_horse_gang_dutch
,
}
Is there a way to add RNG per coat and not just breeds (for example: Arabians)? If not I understand, just curious
The coats are controlled by the models you have in the list. Like in my previous example, those are all the coats of Arabian horses. You can find them all here: rdr3_discoveries/peds/peds_list.lua at master · femga/rdr3_discoveries · GitHub
With that said… The “breed” in the config can be named whatever you want. You can call it “mixed” or “multiple”. Whatever makes sense for you. You can then add any horse model to the list to be randomly selected. I know some people put multiple horse breed model in the same grouping to completely randomize what horse spawns.
Hope this helps.
Greatly! Thank you so much.