forked from Simnation/Main
Update config.lua
This commit is contained in:
parent
912c05664a
commit
3d551404ea
1 changed files with 48 additions and 33 deletions
|
@ -23,42 +23,57 @@ Config = {
|
|||
},
|
||||
},
|
||||
Persons = {
|
||||
{
|
||||
pedHash = `A_F_Y_Indian_01`, -- Use ``(backticks) because it's faster than using GetHashKey
|
||||
{
|
||||
pedHash = `A_F_Y_Indian_01`,
|
||||
pedCoords = vector4(1561.6321, 3801.2871, 33.4187, 207.3153),
|
||||
pedAnimation = {
|
||||
animDict = 'random@burial',
|
||||
animName = 'a_burial',
|
||||
animFlag = 1,
|
||||
animDict = 'amb@code_human_in_bus_passenger_idles@female@tablet@idle_a',
|
||||
animName = 'idle_a',
|
||||
animFlag = 1
|
||||
},
|
||||
pedProp = {
|
||||
propHash = `prop_tool_shovel`,
|
||||
propBone = 28422, -- boneIndex (https://wiki.rage.mp/index.php?title=Bones)
|
||||
propHash = `prop_cs_tablet`, -- Standard GTA tablet prop
|
||||
propBone = 60309, -- Right hand bone for tablet
|
||||
propPlacement = {
|
||||
0.0, -- xPos
|
||||
0.0, -- yPos
|
||||
0.24, -- zPos
|
||||
0.03, -- xPos (slightly forward)
|
||||
-0.02, -- yPos (centered)
|
||||
-0.03, -- zPos (height adjustment)
|
||||
0.0, -- xRot
|
||||
0.0, -- yRot
|
||||
0.0, -- zRot
|
||||
},
|
||||
0.0 -- zRot
|
||||
}
|
||||
},
|
||||
pedSettings = {
|
||||
FreezePerson = true, -- Using only FreezeEntityPosition
|
||||
Invincible = true, -- Using SetEntityInvincible, SetPedDiesWhenInjured, SetPedCanPlayAmbientAnims, SetPedCanRagdollFromPlayerImpact
|
||||
BlockingOfNonTemporaryEvents = true, -- Using SetBlockingOfNonTemporaryEvents
|
||||
FreezePerson = true, -- Maintains position perfectly
|
||||
Invincible = true, -- Can't be interrupted
|
||||
BlockingOfNonTemporaryEvents = true -- No AI interference
|
||||
}
|
||||
}
|
||||
pedHash = `CS_Bankman`,
|
||||
pedCoords = vector4(1561.6321, 3801.2871, 33.4187, 207.3153),
|
||||
pedAnimation = {
|
||||
animDict = 'amb@code_human_in_bus_passenger_idles@female@tablet@idle_a',
|
||||
animName = 'idle_a',
|
||||
animFlag = 1
|
||||
},
|
||||
pedProp = {
|
||||
propHash = `prop_cs_tablet`, -- Standard GTA tablet prop
|
||||
propBone = 60309, -- Right hand bone for tablet
|
||||
propPlacement = {
|
||||
0.03, -- xPos (slightly forward)
|
||||
-0.02, -- yPos (centered)
|
||||
-0.03, -- zPos (height adjustment)
|
||||
0.0, -- xRot
|
||||
0.0, -- yRot
|
||||
0.0 -- zRot
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
pedHash = `A_M_M_BankRobber_01`,
|
||||
pedCoords = vector4(-352.1639, -51.3455, 48.0365, 339.4478),
|
||||
pedScenario = "WORLD_HUMAN_STAND_GUARD", -- Default standing behavior
|
||||
pedSettings = {
|
||||
FreezePerson = true, -- Completely frozen
|
||||
Invincible = true, -- Cannot be killed
|
||||
BlockingOfNonTemporaryEvents = true, -- No distractions
|
||||
FreezePerson = true, -- Maintains position perfectly
|
||||
Invincible = true, -- Can't be interrupted
|
||||
BlockingOfNonTemporaryEvents = true -- No AI interference
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue