Upload files to "scripts"

This commit is contained in:
2025-11-03 22:49:39 +00:00
parent 2a35dcfa3f
commit c897f64adb

12
scripts/commands.wren Normal file
View File

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