naydef
naydef
Are you using music replacement plugin? If yes, then depending on the situation these can be replaced with regular music declaration in the boss config.
I made new gamedata for Linux (only): Here's the diff: ```diff @@ -849,9 +849,9 @@ "signature" "CTFPlayer::ApplyPushFromDamage()" "linux" { - "offset" "684h" - "verify" "\x74" - "patch" "\x71" + "offset"...
For custom_lunchbox_effects gamedata diff: ```diff "signature" "CTFPlayer::DoTauntAttack()" "linux" { - "offset" "91" + "offset" "88" } "windows" { ```
It seem I've made some mistakes with the gamedata. `CTFWeaponBase::ApplyOnHitAttributes()::RemoveSlowness` fix: ```diff ------------- addons/sourcemod/gamedata/tf2.cattr_starterpack.txt ------------- index 9fe63bf9..0f57caa1 100644 @@ -915,9 +915,9 @@ } "windows" { - "offset" "D20h" - "verify"...
We're running FF2 Rewrite, the error appeared on map `vsh_moving_in_v4` and I think this was me who rolled this effect as a boss. The map has a fireplace which does...
It seems this command is intended to be typed from player, not from server console or from RCON
Well, it turns out FF2R is also leaking DataPack handles. It seems it's due to assuming that `CreateDataTimer` is not creating the `DataPack` itself. Fix diff (ignore whitespace changes): ```diff...
The second type of memory leaks (DataPack one) hasn't been taken care of.