forked from elanthia-online/dr-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.lic
More file actions
29 lines (25 loc) · 1.16 KB
/
links.lic
File metadata and controls
29 lines (25 loc) · 1.16 KB
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
26
27
28
29
=begin
Documentation: https://elanthipedia.play.net/Lich_script_repository#links
=end
class Links
# Super simple script to show some useful links
def initialize
links = {
'What is Lich?' => 'https://elanthipedia.play.net/Lich_scripting_engine',
'Lich New User Guide' => 'https://lichproject.org/new-user-guide.html',
'What is Dependency?' => 'https://elanthipedia.play.net/Dependency',
'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/',
'Hunting Ladder Spreadsheet' => 'http://i.imgur.com/lCcb3rD.jpg',
'Trigger to fix genie chat spam' => '#queue clear;#send 1 ,chat #queue clear',
'Guide to github pull requests' => 'https://gist.github.com/Chaser324/ce0505fbed06b947d962'
}
links.each do |title, url|
respond(" #{title}:".ljust(35) + url)
end
end
end
Links.new