Upload files to "scripts"
This commit is contained in:
@@ -1,12 +1,13 @@
|
|||||||
import "random" for Random
|
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 {
|
class Commands {
|
||||||
static god(){
|
static god(){
|
||||||
var passBack = random.sample(quotes)
|
var random = Random.new()
|
||||||
return passBack
|
var list = ["may his shepherd guide you", "jesus loves you", "i was sent hear by god to build his 7th temple"]
|
||||||
|
return random.sample(list)
|
||||||
|
}
|
||||||
|
static pray(){
|
||||||
|
return "The Lord guides my words today so they speak lovingly and with kindness."
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user