- Lua scripts for the Legacy mod. They might or might not work with other mods.
- Lua API doc: see https://legacy-lua-api.readthedocs.io
Banner management system for legacy
mod.
Reserves next cvars to configure banners:
g_bannerTime
sets banner change interval (default5000
)g_bannerLocation
sets banner print location (defaulttop
)
Possible values:top
top of the screen, banner print spot (bp
)left
popup messages (cpm
)center
center print (cp
)chat
chat print (chat
)
g_bannerN
(where N is a number in range of1
to10
) sets banner messages
All cvars should be filled before lua module gets initialized.
- This script is intended for legacy
2.77+
mod.
- Clients can toggle dynatimer with
setu v_dynatimer 1/0
- Killer's HP is displayed to their victims.
Allows medics to heal nearly dead players using syringe.
If player has less than 25% of the health, medic can use syringe to heal the teammates either to full or half health, depending on medic healing skill level (eg. medic level 3 or more, heals teammate to the full health).
- This script is intended for legacy
2.77+
mod.
Remove spawn shield protection when firing.
- This script is intended for legacy
2.77+
mod.
- Please always add modname and version to your lua script
modname="NameofLua"
version="1.0"
function et_InitGame()
et.RegisterModname(modname.." "..version)
end