2025-06-17 21:38:35 +02:00
|
|
|
Config = {
|
|
|
|
Animals = {
|
|
|
|
{
|
|
|
|
animalHash = `a_c_cow`, -- Use ``(backticks) because it's faster than using GetHashKey
|
|
|
|
-- https://docs.fivem.net/docs/game-references/ped-models/#animals
|
|
|
|
animalCoords = vector4(1580.2, 2169.23, 78.22, 40.94 ), -- x, y, z, heading
|
|
|
|
animalScenario = 'WORLD_COW_GRAZING', -- https://github.com/DioneB/gtav-scenarios
|
|
|
|
animalSettings = {
|
|
|
|
FreezeAnimal = true, -- Using only FreezeEntityPosition
|
|
|
|
Invincible = true, -- Using SetEntityInvincible, SetPedDiesWhenInjured, SetPedCanPlayAmbientAnims, SetPedCanRagdollFromPlayerImpact
|
|
|
|
BlockingOfNonTemporaryEvents = true, -- Using SetBlockingOfNonTemporaryEvents
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
animalHash = `a_c_hen`,
|
|
|
|
animalCoords = vector4(1582.36, 2167.7, 78.3, 8.31),
|
|
|
|
animalScenario = 'WORLD_HEN_PECKING',
|
|
|
|
animalSettings = {
|
|
|
|
FreezeAnimal = true,
|
|
|
|
Invincible = true,
|
|
|
|
BlockingOfNonTemporaryEvents = true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Persons = {
|
|
|
|
{
|
2025-06-26 17:02:16 +02:00
|
|
|
pedHash = `A_F_Y_Indian_01`, -- Use ``(backticks) because it's faster than using GetHashKey
|
2025-06-26 17:07:46 +02:00
|
|
|
pedCoords = vector4(1561.6321, 3801.2871, 33.4187, 207.3153),
|
2025-06-26 18:16:18 +02:00
|
|
|
pedAnimation = {
|
|
|
|
animDict = 'random@burial',
|
|
|
|
animName = 'a_burial',
|
|
|
|
animFlag = 1,
|
|
|
|
},
|
|
|
|
pedProp = {
|
|
|
|
propHash = `prop_tool_shovel`,
|
|
|
|
propBone = 28422, -- boneIndex (https://wiki.rage.mp/index.php?title=Bones)
|
|
|
|
propPlacement = {
|
|
|
|
0.0, -- xPos
|
|
|
|
0.0, -- yPos
|
|
|
|
0.24, -- zPos
|
|
|
|
0.0, -- xRot
|
|
|
|
0.0, -- yRot
|
|
|
|
0.0, -- zRot
|
|
|
|
},
|
|
|
|
},
|
2025-06-26 04:18:27 +02:00
|
|
|
pedSettings = {
|
2025-06-26 18:16:18 +02:00
|
|
|
FreezePerson = true, -- Using only FreezeEntityPosition
|
|
|
|
Invincible = true, -- Using SetEntityInvincible, SetPedDiesWhenInjured, SetPedCanPlayAmbientAnims, SetPedCanRagdollFromPlayerImpact
|
|
|
|
BlockingOfNonTemporaryEvents = true, -- Using SetBlockingOfNonTemporaryEvents
|
|
|
|
},
|
2025-06-26 17:07:46 +02:00
|
|
|
},
|
2025-06-26 04:18:27 +02:00
|
|
|
{
|
2025-06-29 08:10:19 +02:00
|
|
|
pedHash = `A_M_M_BankRobber_01`, -- Use ``(backticks) because it's faster than using GetHashKey
|
|
|
|
pedCoords = vector4(-352.1639, -51.3455, 48.0365, 339.4478), -- x, y, z, heading
|
2025-06-17 21:38:35 +02:00
|
|
|
pedAnimation = {
|
|
|
|
animDict = 'random@burial',
|
|
|
|
animName = 'a_burial',
|
|
|
|
animFlag = 1,
|
|
|
|
},
|
|
|
|
pedProp = {
|
|
|
|
propHash = `prop_tool_shovel`,
|
|
|
|
propBone = 28422, -- boneIndex (https://wiki.rage.mp/index.php?title=Bones)
|
|
|
|
propPlacement = {
|
|
|
|
0.0, -- xPos
|
|
|
|
0.0, -- yPos
|
|
|
|
0.24, -- zPos
|
|
|
|
0.0, -- xRot
|
|
|
|
0.0, -- yRot
|
|
|
|
0.0, -- zRot
|
|
|
|
},
|
|
|
|
},
|
|
|
|
pedSettings = {
|
|
|
|
FreezePerson = true, -- Using only FreezeEntityPosition
|
|
|
|
Invincible = true, -- Using SetEntityInvincible, SetPedDiesWhenInjured, SetPedCanPlayAmbientAnims, SetPedCanRagdollFromPlayerImpact
|
|
|
|
BlockingOfNonTemporaryEvents = true, -- Using SetBlockingOfNonTemporaryEvents
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|