 |
|
Member
|

08-08-2019
, 00:00
Re: Cvar Util problem, Game commencing
|
#7
|
Quote:
Originally Posted by CrazY.
Delete the one you've now and put this in amxmodx/configs/orpheu/functions/CHalfLifeMultiplay, check if that solve your problem.
Code:
{
"name" : "CheckWinConditions",
"class" : "CHalfLifeMultiplay",
"library" : "mod",
"identifiers" :
[
{
"os" : "windows",
"mod" : "cstrike",
"value" : [0x83,"*","*",0x53,0x55,0x8B,"*",0x56,0x33,"*",0x57,0x8A,"*","*","*","*"]
},
{
"os" : "linux",
"mod" : "cstrike",
"value" : "_ZN18CHalfLifeMultiplay18CheckWinConditionsEv"
}
]
}
|
if you read my code, you can see I added two checks, one says public when the public called and one says game comm when it detect game commencing, it shows the public message but dosen't show the game comm message, which means its successfully hooked the public but couldn't detect if its a game commencing.
|
|
|
|