Files
Gods-bot/scripts/commands.wren
2025-11-03 22:49:39 +00:00

13 lines
265 B
Plaintext

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