Compare commits
No commits in common. "a3ea6d41a0a2ea69a9d8319b4101da7e3b124570" and "52bca3ee2da23b65a43504f431d5d17fc36ff13a" have entirely different histories.
a3ea6d41a0
...
52bca3ee2d
|
@ -1,3 +1,11 @@
|
||||||
|
;
|
||||||
|
; 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.
|
||||||
|
@ -1775,3 +1783,4 @@ 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,3 +1,2 @@
|
||||||
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