Replies: 5 comments 1 reply
-
|
player_death: _userid, _attacker, _weapon for listening to infection in ze |
Beta Was this translation helpful? Give feedback.
-
|
Hi, I wrote the original list in the OP and here's my updated version Game events
Non-game events
|
Beta Was this translation helpful? Give feedback.
-
|
Id like to add Game events
Instance.OnServerCvar((cvarname, cvarvalue) => {
const bannedCvars = new Set([
"sv_airaccelerate",
"sv_jump_spam_penalty_time",
"sv_staminajumpcost",
"sv_staminalandcost",
"sv_air_max_wishspeed",
"sv_enablebunnyhopping",
"sv_accelerate",
"sv_autobunnyhopping"
]);
if (bannedCvars.has(cvarname)) {
Instance.ServerCommand("kickid 0");
}
}); |
Beta Was this translation helpful? Give feedback.
-
|
Some added in https://steamcommunity.com/games/CSGO/announcements/detail/498333631688738078 |
Beta Was this translation helpful? Give feedback.
-
|
I am closing this discussion as done, if you want more events or changes make a new thread per event with detailed use cases on what you want to do with the event. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
some custom callbacks:
Beta Was this translation helpful? Give feedback.
All reactions