EnableGibs
Unused Postal3Script function
Enables or Disables gibbing of an NPC
Syntax
EnableGibs true
-- Enables gibbing (default)
EnableGibs false
-- Disables gibbing
Example
// from ai_st6_missions.p3s
// This will force Uwe Boll to never gib on death/or when injured when he's spawned into the game
st_init
{
Group Neutral
patterns
{
pt_default
{
actions
{
EnableGibs false
SetAttr "UweTask UWE_WAITFORMISSION"
SetAttr "ea_dmg_absorb 60"
Pattern bh_human:st_init.pt_default
}
}
}
}