forked from elanthia-online/dr-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.lic
25 lines (21 loc) · 832 Bytes
/
links.lic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
=begin
Documentation: https://elanthipedia.play.net/Lich_script_repository#links
=end
class Links
# Super simple script to show some useful links
def initialize
links = {
'Lich New User Guide' => 'https://lichproject.org/new-user-guide.html',
'Dependency First Time Setup' => 'https://github.com/rpherbig/dr-scripts/wiki/First-Time-Setup',
'Dependency Script Documentation' => 'https://elanthipedia.play.net/Lich_script_repository',
'YAML Validator' => 'http://www.yamllint.com/',
'Lich mapping guide' => 'https://elanthipedia.play.net/Lich_mapping_reference',
'Player Shops' => 'https://dr-scripts.firebaseapp.com/',
'Scroll Shop' => 'http://drscrolls.wisdan.com'
}
links.each do |title, url|
respond(" #{title}:".ljust(35) + url)
end
end
end
Links.new