Mudlet : Short and nasty GH progress window

Small and nasty script that shows you the progress you've made during the Great hunt

SCRIPT:
function drawGHBox()
GHBox = Geyser.MiniConsole:new({
name = "GHBox",
x = "1175", y = "295",
width = 140, height = "12c",
color = "black",
fontSize = 7,
})
end
drawGHBox()
TRIGGER 1:
^Your score in the current Great Hunt is: (.*).$  ----perlregex
GHscore = matches[2]

TRIGGER 2:
^Your current rank: (.*)$ ----perlregex
GHrank = matches[2]
GHBox:cecho("<white>-----Great Hunt Progress-----\n")
GHBox:cecho("<white>Current score: <gold>"..GHscore.."\n")
GHBox:cecho("<white>Current rank: <gold>"..GHrank.."\n") 

Every times you look at GREATHUNT SCORE It will append the GUI box with the latest information so you can compare it to the last time you used greathunt. For those who want a blow-by-blow comparison you can make a trigger to 'You have slain -' to fire GREATHUNT SCORE.

I personally have a timer that fires every 5 minutes to see how much ground I've made.

Sign In or Register to comment.