From c897f64adb3a4d03702e0d040801e00772c8ab07 Mon Sep 17 00:00:00 2001 From: wullie Date: Mon, 3 Nov 2025 22:49:39 +0000 Subject: [PATCH] Upload files to "scripts" --- scripts/commands.wren | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/commands.wren diff --git a/scripts/commands.wren b/scripts/commands.wren new file mode 100644 index 0000000..692f865 --- /dev/null +++ b/scripts/commands.wren @@ -0,0 +1,12 @@ +import "random" for Random +var quotes = ["may his shepherd guide you", "jesus loves you", "i was sent hear by god to build his 7th temple"] +var random = Random.new() + + +class Commands { + static god(){ + var passBack = random.sample(quotes) + return passBack + } + +}