1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bzzz_spawnped/config.lua

117 lines
3.8 KiB
Lua
Raw Normal View History

2025-06-17 21:38:35 +02:00
Config = {
Animals = {
{
2025-06-29 08:23:53 +02:00
animalHash = `a_c_cow`,
animalCoords = vector4(1580.2, 2169.23, 78.22, 40.94),
animalScenario = 'WORLD_COW_GRAZING',
2025-06-17 21:38:35 +02:00
animalSettings = {
2025-06-29 08:29:46 +02:00
FreezeAnimal = false, -- Should be false for scenarios to work
2025-06-29 08:23:53 +02:00
Invincible = true,
2025-06-29 08:29:46 +02:00
BlockingOfNonTemporaryEvents = true
2025-06-29 08:23:53 +02:00
}
2025-06-17 21:38:35 +02:00
},
2025-06-29 08:23:53 +02:00
{
animalHash = `a_c_hen`,
2025-06-17 21:38:35 +02:00
animalCoords = vector4(1582.36, 2167.7, 78.3, 8.31),
animalScenario = 'WORLD_HEN_PECKING',
animalSettings = {
2025-06-29 08:29:46 +02:00
FreezeAnimal = false, -- Should be false for scenarios to work
2025-06-29 08:23:53 +02:00
Invincible = true,
2025-06-29 08:29:46 +02:00
BlockingOfNonTemporaryEvents = true
2025-06-29 08:23:53 +02:00
}
2025-06-29 08:20:20 +02:00
}
},
2025-06-29 08:23:53 +02:00
Persons = {
{
pedHash = `A_F_Y_Indian_01`,
pedCoords = vector4(1561.6321, 3801.2871, 33.4187, 207.3153),
pedAnimation = {
2025-06-29 08:29:46 +02:00
animDict = 'amb@world_human_stand_tablet@female@base', -- Verified tablet animation
animName = 'base',
animFlag = 49
2025-06-29 08:23:53 +02:00
},
pedProp = {
propHash = `prop_cs_tablet`,
2025-06-29 08:29:46 +02:00
propBone = 28422, -- Correct bone for left hand
2025-06-29 08:23:53 +02:00
propPlacement = {
2025-06-29 08:29:46 +02:00
0.18, 0.08, -0.14, -- Position adjustments
10.0, -100.0, 0.0 -- Rotation adjustments
2025-06-29 08:23:53 +02:00
}
},
pedSettings = {
FreezePerson = true,
Invincible = true,
BlockingOfNonTemporaryEvents = true
}
2025-06-29 08:29:46 +02:00
},
2025-06-29 08:23:53 +02:00
{
pedHash = `CS_Bankman`,
pedCoords = vector4(-352.1639, -51.3455, 48.0365, 339.4478),
pedAnimation = {
2025-06-29 08:29:46 +02:00
animDict = 'amb@world_human_stand_tablet@male@base', -- Male version
animName = 'base',
animFlag = 49
2025-06-29 08:23:53 +02:00
},
pedProp = {
propHash = `prop_cs_tablet`,
2025-06-29 08:29:46 +02:00
propBone = 28422,
2025-06-29 08:23:53 +02:00
propPlacement = {
2025-06-29 08:29:46 +02:00
0.17, 0.07, -0.15,
10.0, -100.0, 0.0
2025-06-29 08:23:53 +02:00
}
},
pedSettings = {
FreezePerson = true,
Invincible = true,
BlockingOfNonTemporaryEvents = true
}
2025-06-29 12:07:15 +02:00
},
{
pedHash = `CS_Bankman`,
pedCoords = vector4(148.5678, -1042.1091, 29.3680, 336.1227),
pedAnimation = {
animDict = 'amb@world_human_stand_tablet@male@base', -- Male version
animName = 'base',
animFlag = 49
},
pedProp = {
propHash = `prop_cs_tablet`,
propBone = 28422,
propPlacement = {
0.17, 0.07, -0.15,
10.0, -100.0, 0.0
}
},
pedSettings = {
FreezePerson = true,
Invincible = true,
BlockingOfNonTemporaryEvents = true
}
2025-07-20 19:51:58 +02:00
},
{
pedHash = `S_M_M_DockWork_01`,
pedCoords = vector4(1243.1014, -3196.8843, 6.0282, 271.5252),
pedAnimation = {
animDict = 'amb@world_human_stand_tablet@male@base', -- Male version
animName = 'base',
animFlag = 49
},
pedProp = {
propHash = `prop_cs_tablet`,
propBone = 28422,
propPlacement = {
0.17, 0.07, -0.15,
10.0, -100.0, 0.0
}
},
pedSettings = {
FreezePerson = true,
Invincible = true,
BlockingOfNonTemporaryEvents = true
}
},
2025-06-29 12:07:15 +02:00
2025-06-29 08:20:20 +02:00
}
2025-06-29 08:18:20 +02:00
}