Upload random rtd roller plugin
This commit is contained in:
17
scripting/RandomBullshitGo.sp
Normal file
17
scripting/RandomBullshitGo.sp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <sourcemod>
|
||||
public Plugin myinfo = {
|
||||
name = "Fartsy's Random Bullshit Go",
|
||||
author = "Fartsy",
|
||||
description = "Fuck you Brawler",
|
||||
version = "1.0.0",
|
||||
url = "https://wiki.hydrogenhosting.org"
|
||||
};
|
||||
|
||||
public void OnPluginStart(){
|
||||
RegServerCmd("sm_fuckyoubrawler", Command_RandomThing, "yes");
|
||||
}
|
||||
|
||||
public Action Command_RandomThing(int args){
|
||||
if (GetRandomInt(0,1) == 1) ServerCommand("sm_forcertd @all");
|
||||
return Plugin_Handled;
|
||||
}
|
Reference in New Issue
Block a user