View Single Post
Zack771
Senior Member
Join Date: Apr 2012
Old 06-20-2014 , 17:16   Re: [CS:S] NetChannel error spam console and kick client
Reply With Quote #17

Ok for the trigger_push, got one with a 5000 force. Which correspond to the value ^^

The handle errors all come from different menu in MenuAction_End :
PHP Code:
case MenuAction_End:
        {
            
CloseHandle(menu); // <-- this line
        

And all of my menu contain this :
PHP Code:
switch(action) {
        case 
MenuAction_Cancel:
        {
            if(
param2 == MenuCancel_ExitBack) {
                
CloseHandle(menu);
                
BuildMenuCommandes(param1);
            }
        }
        case 
MenuAction_End:
        {
            
CloseHandle(menu);
        }
        case 
MenuAction_Select:
        {
            
//stuff;
        
}

Don't have any idea. Got other plugins where i do the exactly same thing (except the MenuAction_Cancel) and doesn't got problem with them.
__________________
"Embrace your dreams, and whatever happend protect your honor"
Zack Fair
Zack771 is offline