Quote:
Originally Posted by Desikac
That will not prevent the original amx_ban from executing. The player will already be kicked when my function starts. 
Replacing another plugin is harder than just putting mine first in plugins.ini.
|
Yes it will. I don't just take guesses to collect posts.
Without plugin:
Code:
] amx_ban test
Usage: amx_ban <name or #userid> <minutes> [reason]
] amx_kick test
Client with that name or userid not found
With plugin:
Code:
] amx_ban test
] amx_kick test
Client with that name or userid not found
Code:
server_print("plugin_init() admincmd")
Code:
server_print("plugin_init() custom plugin")
Code:
plugin_init() admincmd
plugin_init() custom plugin
__________________