Aetolia.com
Lore Wiki
Vote!
Forum Rules
Discussions
Activity
Best Of...
Home
›
Tech Talk
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
0
Categories
3.7K
All Categories
3K
The Midnight Age
757
Announce posts
125
Newbies
6
Class Guides
804
Harpy's Head Tavern
57
Echo Canyon
310
Self-Affirmations
163
Town Crier
135
The Exchange
167
Sparring Grounds
Combat Guides
30
Combat Logs
188
Idea Box
9
Classleads
578
Roleplay Logs
107
Aetolia Development
5
The Void
744
Miscellaneous
9
Announcements
417
OOC Chat
217
Tech Talk
47
Scripts
In this Discussion
January 2015
Nalor
January 2015
Ouzu
January 2015
Irruel
Looking for more active discussion? Join our Discord at
https://discord.gg/x2s7fY6
Reanimation triggers
Ouzu
January 2015
in
Tech Talk
I asked for help on kll clan ig for some mudlet alias/triggers to make Serums in reanimation faster so wont have to type everything and got no response. So can anyone help me figure out how to make some alias/triggers to do so? thanks
0
Comments
Irruel
January 2015
Try the mudlet scripts thread - somewhere in the scripts section of the forum. It probably exists in there somewhere.
0
Ouzu
January 2015
ive checked nothing there
0
Nalor
UK
January 2015
make a script and add like
reanimation = {
analeptic = {
redink = 1,
liver_slice = 3,
ovary_slice = 3,
},
}
========
make another script and do like
function MyReanimation(ser, amou)
for k,v in pairs(reanimation[ser]) do
send("incauldron " .. (v*amou) .. " " .. k .. " to cauldron")
end
send("ferment cauldron")
end
============================
then do like
then do a alias with like
^rf (\d+) (\w+)$
MyREanimation(matches[3], matches[2])
===
technically - rf 2 analeptic .. should brew/make 2 analeptic..
not tested but shouldn't be that hard to follow.. Also you'll have to manually fill emptyvial from cauldron
Mudlet Bashing System
for sale. Message if interested
0
Sign In
or
Register
to comment.
Comments
reanimation = {
analeptic = {
redink = 1,
liver_slice = 3,
ovary_slice = 3,
},
}
========
make another script and do like
function MyReanimation(ser, amou)
for k,v in pairs(reanimation[ser]) do
send("incauldron " .. (v*amou) .. " " .. k .. " to cauldron")
end
send("ferment cauldron")
end
============================
then do like
then do a alias with like
^rf (\d+) (\w+)$
MyREanimation(matches[3], matches[2])
===
technically - rf 2 analeptic .. should brew/make 2 analeptic..
not tested but shouldn't be that hard to follow.. Also you'll have to manually fill emptyvial from cauldron