for max frag donation limit you could make a pcvar..
Code:
new g_pcvarFragLimit;
//......
//..... in plugin_init()
g_pcvarFragLimit = register_cvar( "amx_frag_limit", "10" );
//.....
then just use the pcvar to when you checking the limit thruout your code.
__________________