From what I first saw:
PHP Code:
//Redacted Code
#define PLUGIN "Full Pack Grenades"
#define VERSION "1.0.4"
#define AUTHOR "Simple32"
public plugin_init() {
register_plugin( "Full Pack Grenades", "1.0.4", "Simple32" );
//Redacted code
}
//Redacted Code
Waste of #defines
PHP Code:
//Redacted Code
#define PLUGIN "Full Pack Grenades"
#define VERSION "1.0.4"
#define AUTHOR "Simple32"
public plugin_init() {
register_plugin( PLUGIN, VERSION, AUTHOR );
//Redacted code
}
//Redacted Code