From 6f9fd54686ede1c9351bf793549aae9796d19186 Mon Sep 17 00:00:00 2001 From: Professor Fartsalot Date: Wed, 23 Jul 2025 22:11:30 -0400 Subject: [PATCH] Upload random rtd roller plugin --- scripting/RandomBullshitGo.sp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripting/RandomBullshitGo.sp diff --git a/scripting/RandomBullshitGo.sp b/scripting/RandomBullshitGo.sp new file mode 100644 index 0000000..ed14043 --- /dev/null +++ b/scripting/RandomBullshitGo.sp @@ -0,0 +1,17 @@ +#include +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; +} \ No newline at end of file