Thread: missed
View Single Post
platzpatrone
Veteran Member
Join Date: Apr 2007
Location: Germany
Old 09-09-2010 , 14:07   Re: Block fullupdate
Reply With Quote #3

got this from AMX Super and using it in own plugins:

PHP Code:
#include <amxmodx>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
register_clcmd("fullupdate","fullupdate")
    
}

public 
fullupdate(id) {
    return 
PLUGIN_HANDLED_MAIN

platzpatrone is offline