Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- #include <fakemeta>
- public plugin_init() {
- register_plugin("Hook Server Print", "0.1", "AUTHOR");
- register_forward(FM_ServerPrint, "FW_ServerPrint");
- }
- public FW_ServerPrint(const string[]) {
- static const szLogFile[] = "ServerPrint.log";
- log_to_file(szLogFile, string);
- }
Advertisement
Add Comment
Please, Sign In to add comment