I want a script made that I can bind to a key. When I press the key the script will check 'ih' and target what's in the room based upon what I allow in a table. The script would have to have aliases that I can use to add/remove items from the table.
I use Mudlet and Svo if that helps.
Your time is valuable and I have credits.
Comments
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
function autotargetSave()
table.save(getMudletHomeDir() .. "/autotarget.lua",autotarget.list)
autotargetMsg("Saved")
end
function autotargetLoad()
table.load(getMudletHomeDir() .. "/autotarget.lua",autotarget.list)
autotargetMsg("Loaded")
end
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
function autotargetAdd(thing,p)
if table.contains(autotarget.list, thing) then
autotargetMsg("Target <green>"..thing.."<reset> already in table.")
else
priority = tonumber(p) or table.maxn(autotarget.list) + 1
if priority > table.maxn(autotarget.list) then
table.insert(autotarget.list,thing)
priority = table.maxn(autotarget.list)
else
table.insert(autotarget.list,priority,thing)
end
autotargetMsg("Added target <green>"..thing.."<reset> at priority <blue>"..priority.."<reset>.")
end
end
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."