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 + } + +}