View Single Post
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 05-14-2019 , 19:07   Re: Half-Life GunGame
Reply With Quote #114

Everything has been super stable both client-side and server-side.
  • One small bug is if somebody is touching ceiling or wall they have to reconnect at warm-up end. They spawn stuck or can not respawn because of the pev flag, FL_FROZEN. When removed the effect/issue vanishes. FL_FROZEN is still nice on game end.
  • Since upgrading to AMX1.9.0 / not using Galileo, the map vote stopped being triggered.

Amx log showed it was using 0 or auto-detect as it was compiled and ignoring the INI parameter of 3 for custom votemap command.
Recompile made it work. Is this by chance AMXX 1.9.0 related or something else?
Code:
487         cvar[CVAR_MAPCHOOSER_TYPE] = register_cvar("gg_mapchooser_type","3")

You've already used this technique on this mod to suppress compiler warnings.
This eliminates a handful in a row.
Code:
1395          #if AMXX_VERSION_NUM < 190 1396 #define ITEM_FLAG_SELECTONEMPTY       1 1397 #define ITEM_FLAG_NOAUTORELOAD        2 1398 #define ITEM_FLAG_NOAUTOSWITCHEMPTY   4 1399 #define ITEM_FLAG_LIMITINWORLD        8 1400 #define ITEM_FLAG_EXHAUSTIBLE        16 1401         #endif
__________________

Last edited by DJEarthQuake; 05-15-2019 at 04:05. Reason: Freeze and reconnect fix
DJEarthQuake is offline