Raised This Month: $ Target: $400
 0% 

Need Plugin Display List of the plugins using client_putinserver


Post New Thread Reply   
 
Thread Tools Display Modes
wickedd
Veteran Member
Join Date: Nov 2009
Old 03-21-2017 , 20:22   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #11

Well good luck. I'm done with this thread.
__________________
Just buy the fucking game!!!!
I hate No-Steamers and lazy ass people.
wickedd is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 03-21-2017 , 20:27   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #12

You can reduce the work significantly (compared to disabling single plugins) by disabling only half of the plugins. If the issue goes away then the issue is in the half that you disabled. Enable half of the now disabled plugins. Repeat. This will be the quickest method to find the plugin that is causing the issue (assuming that the issue happens every time you connect of course).
__________________
fysiks is offline
Old.School
Senior Member
Join Date: Sep 2015
Location: France
Old 03-21-2017 , 20:27   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #13

Quote:
Originally Posted by wickedd View Post
Well good luck. I'm done with this thread.
no prob thnx anyway
__________________
You keep bringing B.R down .. He will rise again and kick Enemies asses !
Old.School is offline
Old.School
Senior Member
Join Date: Sep 2015
Location: France
Old 03-21-2017 , 20:31   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #14

Quote:
Originally Posted by fysiks View Post
You can reduce the work significantly (compared to disabling single plugins) by disabling only half of the plugins. If the issue goes away then the issue is in the half that you disabled. Enable half of the now disabled plugins. Repeat. This will be the quickest method to find the plugin that is causing the issue (assuming that the issue happens every time you connect of course).
the crash is not stable can't know when his gonna happen its not every time when any player connect but the server crash more than 10 times every day
__________________
You keep bringing B.R down .. He will rise again and kick Enemies asses !

Last edited by Old.School; 03-21-2017 at 20:31.
Old.School is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 03-21-2017 , 22:30   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #15

Well, you'll need to do my method anyways. You'll have to decide how many plugins to disable and then let the server run for the whole day.

There's really not much else that you can do.
__________________
fysiks is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 03-21-2017 , 22:36   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #16

Quote:
Originally Posted by Old.School View Post
the crash is not stable can't know when his gonna happen its not every time when any player connect but the server crash more than 10 times every day
No amx error logs? i doubt bro.
Give more details, we know that you problem is at client_putinserver. But discover what plugins is using it is not a good idea to solve this.
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 

Last edited by ^SmileY; 03-21-2017 at 22:37.
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
Old.School
Senior Member
Join Date: Sep 2015
Location: France
Old 03-22-2017 , 09:32   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #17

Quote:
Originally Posted by ^SmileY View Post
No amx error logs? i doubt bro.
Give more details, we know that you problem is at client_putinserver. But discover what plugins is using it is not a good idea to solve this.
there is No amx error logs . i was just trying to decrease the suspected plugins number to win the time
__________________
You keep bringing B.R down .. He will rise again and kick Enemies asses !
Old.School is offline
Fr33m@n
Veteran Member
Join Date: May 2008
Location: France Marne
Old 03-23-2017 , 08:22   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #18

What about sending us all the output of rcon amxx plugins for godsake.

Many people here knows that some plugins here are unstable, we may find some with just the list...
Fr33m@n is offline
Old.School
Senior Member
Join Date: Sep 2015
Location: France
Old 03-23-2017 , 18:42   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #19

Quote:
Originally Posted by Fr33m@n View Post
What about sending us all the output of rcon amxx plugins for godsake.

Many people here knows that some plugins here are unstable, we may find some with just the list...
the server was stable before with the same plugins list but the plugins have so much updates/edits
__________________
You keep bringing B.R down .. He will rise again and kick Enemies asses !
Old.School is offline
clavificial
Junior Member
Join Date: Jan 2017
Old 03-23-2017 , 18:59   Re: Need Plugin Display List of the plugins using client_putinserver
Reply With Quote #20

Hi! Try this.

Type this into console:
sf_display "client_putinserver"

Note that this might crash your server since the function is called on each plugin. If the server crashes you will need to check the logs (or post the logs here)

PHP Code:

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Function Finder"
#define VERSION "1.0"
#define AUTHOR "Clavificial"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
register_concmd("sf_display""sf_display_cmd")
}

public 
sf_display_cmd(id) {
    new 
args[32]
    
read_args(args31)
    
remove_quotes(args)
    
    for(new 
0get_pluginsnum(); i++) {
        new 
plugin_name[32
        new 
plugin get_plugin(iplugin_name31)
        if(
plugin == -1) {
            return 
PLUGIN_HANDLED
        
}
        
        
log_amx("[Function Finder] Testing if plugin %s contains function: %s"plugin_nameargs)
        
        if(
callfunc_begin(argsplugin_name) == 1) {
            
log_amx("^n^n*** [Function Finder] Found plugin with %s function: %s  ***^n"argsplugin_name)
            
client_print(idprint_console"*** [Function Finder] Found plugin with %s function: %s ***"argsplugin_name)
            
callfunc_end()
        }
        
    }
    return 
PLUGIN_HANDLED


Last edited by clavificial; 03-23-2017 at 19:03. Reason: Clarifying
clavificial is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:17.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode