forked from CL-LA/macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabbreviations.macro
157 lines (144 loc) · 3.88 KB
/
abbreviations.macro
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//------------------------------------------------
// abbreviations.mac
//------------------------------------------------
// Keep your abbreviations in this file...
//
setglobal abbreviationsfilerevision "20210421-0930-0009"
"??" "/help " @text "\r"
"aa" "/action " @text "\r"
"gg" "/give " @text "\r"
"hp" "/ponder healer pounce! \r"
"ii" "/info " @text "\r"
"kr" "/karma " @text "\r"
"kp" "kill please \r"
"mm" "/money " @text "\r"
"n" "/narrate " @text "\r"
"nn" "/news\r"
"pp" "/ponder " @text "\r"
"sel" "/select " @text "\r"
"sh" "/share " @text "\r"
"shl" "/share /lock " @text "\r"
"tag" "I tagged it :) \r"
"ty" call thankyou // Note this is character specific mod
"sl"
{
set sleepToggle 1
"/sleep \r"
}
"th" "/thank " @text " \r"
"u" "/use " @text " \r"
"ui" "/useitem " @text " \r"
"uu" "/use " @text " \r"
"un" "/unshare " @text " \r"
"us" "/unshare " @text " \r"
"w" "/who " @text " \r"
"wh" "/whisper " @text " \r"
"/dm" "/drop /mine \r"
thankyou
{
if tyt == "cat" // tyt is defined in character file
"Thank you >'.'< \r"
end if
if tyt == "dwarf"
"t'anki \r"
end if
if tyt == "x"
"Thank you. \r"
end if
if tyt == ""
"Thank you. \r"
end if
}
// Replacement Text Strings
// 200611-inu: These are from many sources, uppercased to make it easier to type
// what you want without these getting in the way.
"AG" "astral guardian "
"BC" "Bear Cave "
"BH" "BlackHand "
"BH1" "BlackHole "
"bbl" "Be back later "
"bbs" "Be back soon "
"brb" "I'll be right back "
"brt" "be right there "
// 'cotg ' "captain of the guard"
// 'ex ' "excuse me" // found this interferes with saying ex-wife etc
"exc" "excuse me"
// 'dc ' "disconnect"
"DH" "DragonHawk "
"DF" "death furie "
"DK" "dark knight "
"DT" "Dark Temple "
"EF" "East Forest "
"EFL" "lower East Field "
"EFU" "upper East Field "
"EP" "Ethereal Plane "
"FD" "Feral Den "
"FH" "Frozen Ham "
"FN" "Finegas "
"FIN" "Finegas "
"FW" "firewalker "
"GK" "good karma "
"GMV" "Greymyr Village "
"GNF" "Grassy North Field "
"GS" "great sword "
"GV" "giant vermine "
"GW" "greater wraith "
"LA" "Laughing Academy "
"LP" "lily pond "
"LSW" "large/lesser sand wurm "
"LV" "large vermine "
"MC" "Maha Cave "
"MH" "Marsh Hermit "
"MP" "Mid Pass "
"MR" "Marsh "
"MT" "Maha Tomb "
"mp" "my pleasure "
"mv" "move please! "
"mw" "make way please"
"MYR" "greymyr "
"NB" "North Beach "
"NBC" "New Bear Cave "
"NF" "north forest "
"nv" "nevermind "
"np" "no problem "
"NP" "North Pass "
"NS" "new swamp "
"OC" "Orga Camp "
"OC2" "Orga Camp 2 "
"OC3" "Orga Camp 3 "
"OC4" "Orga Camp 4 "
"omw" "on my way "
"oow" "on our way "
"OV" "Orga Village "
"PALLI" "pallidew "
"POS" "Puddleby Orthinological Society "
"PUN" "Punny "
"PURG" "Purgatory "
"QC" "Queen\'s Chamber "
"RC" "Rocky Cavern "
"SAR" "sar'noth "
"SAV" "savannah "
"SB" "South Beach "
"SP" "South Pass "
"SPRIG" "spriggi n"
"SS" "sunstone "
"SWB" "southwest beach "
"TGBG" "Tree Giant Breeding Ground "
"thx" "thank "
"TI" "Tenebrion's Island "
"TK" "Tenebrion's Keep "
"VEL" "vel'noth "
"wel" "welcome ^_^ /r"
"wg" "willow giant "
"WG" "Wisher\'s Gate "
"XAR" "xar'noth! "
"ZOL" "zol'noth "
message "===> Loaded abbreviations.macro"
/*
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
R E V I S I O N L O G
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
20210224-Inu: Change "ty" to a character specific style. Add ty global variable to your character file.
Set it to cat, dwarf, or just empty "". Type of ty will increase as I get them added.
Attributions: Delta Tao, Noivad, Lorikeet, Gorvin, Raul, DragonHawk, Skirwan and more I don't know.
*/