Compare commits
3 Commits
52bca3ee2d
...
a3ea6d41a0
Author | SHA1 | Date |
---|---|---|
|
a3ea6d41a0 | |
|
12fe698e5b | |
|
5dfadd95dc |
|
@ -1,11 +1,3 @@
|
||||||
;
|
|
||||||
; Sid Meier’s ALPHA CENTAURI
|
|
||||||
;
|
|
||||||
; Background Story & Character Quotations
|
|
||||||
;
|
|
||||||
; Copyright © 1997, 1998 by Firaxis Games, Inc.
|
|
||||||
;
|
|
||||||
|
|
||||||
##Opening Quotation
|
##Opening Quotation
|
||||||
#OPENING
|
#OPENING
|
||||||
Therefore the Lord God sent him forth from the garden of Eden.
|
Therefore the Lord God sent him forth from the garden of Eden.
|
||||||
|
@ -1783,4 +1775,3 @@ the feeling that I have witnessed a form of transcendence.
|
||||||
^ —Commissioner Pravin Lal,
|
^ —Commissioner Pravin Lal,
|
||||||
^ “The Convergence”
|
^ “The Convergence”
|
||||||
|
|
||||||
# ; This line must remain at end of file
|
|
1
Gemfile
1
Gemfile
|
@ -1,2 +1,3 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
gem 'discordrb'
|
gem 'discordrb'
|
||||||
|
gem 'rufus-scheduler'
|
||||||
|
|
2
bot.rb
2
bot.rb
|
@ -19,7 +19,7 @@ scheduler = Rufus::Scheduler.new
|
||||||
start_time = Rufus::Scheduler.parse('08:00') # what time of day the message should send
|
start_time = Rufus::Scheduler.parse('08:00') # what time of day the message should send
|
||||||
|
|
||||||
|
|
||||||
scheduler.every '1d', first_at start_time do
|
scheduler.every '1d', first_at: start_time do
|
||||||
bot.send_message(852541842511495210, random_quote(quotes))
|
bot.send_message(852541842511495210, random_quote(quotes))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue