You are viewing a potentially older version of this package.
View all versions.
| Date uploaded | 4 years ago |
| Version | 0.0.1 |
| Download link | Team036-DamageDisplay-0.0.1.zip |
| Downloads | 165 |
| Dependency string | Team036-DamageDisplay-0.0.1 |
README
What this mod brings
This will show the damage and kill in your upper right like apex.
New callbacks
AddCallback_DamageFlyout( void functionref( float, vector, entity, bool, bool ) )
AddCallback_Obituary( UpdateDamage )
void function UpdateDamage(float damage, vector damagePosition, entity victim, bool isCrit, bool isIneffective)
Mod.json
Convars
"ConVars": [
{
// Position.Left top 0 0 0.Right Bottom 1 1 0.Use Space to separate.
"Name": "Position",
"DefaultValue": "0.86 0.08 0.0"
},
{
// RGB
"Name": "Color",
"DefaultValue": "240 248 255"
},
{
"Name": "Alpha",
"DefaultValue": "1.0"
},
// Text size
{
"Name": "Size",
"DefaultValue": "24.0"
},
// Format string, custom your display style here. Use \n to start a new line.
{
"Name": "Format",
"DefaultValue": "DMG: {DAMAGE} KILL: {KILL}"
},
// The damage can be float. If false, the damage will show as integer.
{
"Name": "UseFloat",
"DefaultValue": "false"
}
]
Files
| mod.json
|
\---mod
\---scripts
\---vscripts
| l1nexus_damage_display.nut
|
\---client
| cl_player.gnut
|
\---rui
cl_hud.gnut
Further updates
- Use some image in the display.
Update log
v0.0.1
- Upload