17 lines
384 B
Plaintext
17 lines
384 B
Plaintext
|
#include <sourcemod>
|
||
|
|
||
|
/**
|
||
|
* I don't know if I like this yet....
|
||
|
*/
|
||
|
public String:PLUGIN_NAME[] = "Testcrab"
|
||
|
public String:PLUGIN_AUTHOR[] = "BAILOPAN"
|
||
|
public String:PLUGIN_VERSION[] = "0.0.0.0"
|
||
|
public String:PLUGIN_URL[] = "http://www.sourcemod.net/"
|
||
|
public String:PUBLIC_DESCRIPTION[] = "A test, fool"
|
||
|
|
||
|
public OnPluginInit()
|
||
|
{
|
||
|
/* just a test, mommy */
|
||
|
return 5
|
||
|
}
|