Upload random rtd roller plugin

This commit is contained in:
2025-07-23 22:11:30 -04:00
parent 7eef3b7e82
commit 6f9fd54686

View 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;
}