13 lines
265 B
Plaintext
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
|
|
}
|
|
|
|
}
|