Rank Chart

From CLUMP
Jump to navigationJump to search

Rank Range to Trainer Message[edit]

Rank Range Trainer Mesasage Blade Message
0–9 You have much to learn. You feel you have much to learn.
10–19 It is good to see you. You feel tolerably skilled.
20–29 Your persistence is paying off.
30–39 You are progressing well.
40–49 You are a good pupil of mine. You are becoming proficient.
50–99 You are one of my better pupils. You have learned much.
100–149 You keep me on my toes. You have become skilled.
150–199 It is hard to find more to teach you. You have become very skilled.
200–249 Teaching you is a challenge. Learning more is a challenge.
250–299 There is not much more I can teach you. You have attained great skill.
300–349 Teaching you has taught me much. You are becoming an expert.
350–399 You have attained tremendous skill.
400–449 We are nearly equals. You are close to attaining mastery.
450–499 You may be proud of your accomplishment.
500–549 You are becoming a master of your art.
550–599 Your dedication is commendable.
600–649 You show great devotion to your studies.
650–699 You are a credit to our craft. You are a credit to your craft.
700–749 Few indeed are your peers.
750–799 Your devotion to the craft is exemplary. Your devotion to your craft is exemplary.
800–899 It is always good to greet a respected colleague. Your expertise is unquestionable.
900–999 You are truly a grand master.
1000–1249 Let us search for more we might learn together. Few if any are your equal.
1250–1499 Your persistence is an example to us all.
1500–1749 Your skill astounds me. Your skill is astounding.
1750–1999 You have progressed further than most.
2000–2249 You are nearly peerless.
2250–2499 You are a model of dedication.
2500–2749 You have achieved mastery. ?
2750–2999 You are enlightened. ?
3000–3249 Your command of our craft is inspiring. ?
3250–3499 All commend your dedication to our craft. ?
3500–3749 I marvel at your skill. ?
3750–3999 You walk where few have tread. ?
4000–4249 Few stones are unturned in your path. ?
4250–4499 Your footsteps guide the dedicated. ?
4500–4749 You chart a way through the unknown. ?
4750–4999 Your path illuminates the wilderness. ?
5000– ? ?
6000– Your path is ablaze with glory. ?
????–????: You are enlightened beyond measure. ?
MAXED There is nothing I can teach you. ?

Thanks to Winds of Dawn, Alces and others that made this chart possible. (And Geraldus who pointed this post out. I guess I should lessen how often I trap wizards and get them killed?)

and now a week later thanks to Fiona, we have an even more trainer messages after 2500 in the chart now via the resourceful people at the Puddleopedia

Ravenstorm added messages above 4250

Rankcount Macro[edit]

This macro integrates with a scanning macro, when setglobal gTrainerPhrase @env.textLog is used in the scanning macro and this macro is called with call rankcount.

/* *** ReadText by Raul Version 2 *** */

"/rankcount" call rankcount
rankcount
{
if gTrainerPhrase == ""
	goto exit
end if
//------------------------------------------------
// START: Readtext.mac by Raul integration
//------------------------------------------------
	set trainer gtrainerPhrase.word[2]
	if gtrainerPhrase < "You have much to learn."
		message " " @env.textLog.word[2] ": 0-9."
	else if gtrainerPhrase < "It is good to see you."
		message " " @env.textLog.word[2] ": 10-19."
	else if gtrainerPhrase < "Your persistence is paying off."
		message " " @env.textLog.word[2] ": 20-29."
	else if gtrainerPhrase < "You are progressing well."
		message " " @env.textLog.word[2] ": 30-39."
	else if gtrainerPhrase < "You are a good pupil of mine."
		message " " @env.textLog.word[2] ": 40-49."
	else if gtrainerPhrase < "You are one of my better pupils."
		message " " @env.textLog.word[2] ": 50-99."
	else if gtrainerPhrase < "You keep me on my toes."
		message " " @env.textLog.word[2] ": 100-149."
	else if gtrainerPhrase < "It is hard to find more to teach you."
		message " " @env.textLog.word[2] ": 150-199."
	else if gtrainerPhrase < "Teaching you is a challenge."
		message " " @env.textLog.word[2] ": 200-249."
	else if gtrainerPhrase < "There is not much more I can teach you."
		message " " @env.textLog.word[2] ": 250-299."
	else if gtrainerPhrase < "Teaching you has taught me much."
		message " " @env.textLog.word[2] ": 300-349."
	else if gtrainerPhrase < "You have attained tremendous skill."
		message " " @env.textLog.word[2] ": 350-399."
	else if gtrainerPhrase < "We are nearly equals."
		message " " @env.textLog.word[2] ": 400-449."
	else if gtrainerPhrase < "You may be proud of your accomplishment."
		message " " @env.textLog.word[2] ": 450-499."
	else if gtrainerPhrase < "You are becoming a master of our art."
		message " " @env.textLog.word[2] ": 500-549."
	else if gtrainerPhrase < "Your dedication is commendable."
		message " " @env.textLog.word[2] ": 550-599."
	else if gtrainerPhrase < "You show great devotion to your studies."
		message " " @env.textLog.word[2] ": 600-649."
	else if gtrainerPhrase < "You are a credit to your craft."
		message " " @env.textLog.word[2] ": 650-699."
	else if gtrainerPhrase < "Few indeed are your peers."
		message " " @env.textLog.word[2] ": 700-749."
	else if gtrainerPhrase < "Your devotion to the craft is exemplary."
		message " " @env.textLog.word[2] ": 750-799."
	else if gtrainerPhrase < "It is always good to greet a respected colleague."
		message " " @env.textLog.word[2] ": 800-899."
	else if gtrainerPhrase < "You are truly a grand master."
		message " " @env.textLog.word[2] ": 900-999."
	else if gtrainerPhrase < "Let us search for more we might learn together."
		message " " @env.textLog.word[2] ": 1000-1249."
	else if gtrainerPhrase < "Your persistence is an example to us all."
		message " " @env.textLog.word[2] ": 1250-1499."
	else if gtrainerPhrase < "Your skill astounds me."
		message " " @env.textLog.word[2] ": 1500-1749."
	else if gtrainerPhrase < "You have progressed further than most."
		message " " @env.textLog.word[2] ": 1750-1999."
	else if gtrainerPhrase < "You are nearly peerless."
		message " " @env.textLog.word[2] ": 2000–2249"
	else if gtrainerPhrase < "You are a model of dedication."
		message " " @envtextLog.word[2] ": 2250–2499"
	else if gtrainerPhrase < "You have achieved mastery."
		message " " @envtextLog.word[2] ": 2500–2749"
	else if gtrainerPhrase < "You are enlightened."
		message " " @envtextLog.word[2] ": 2750–2999"
	else if gtrainerPhrase < "Your command of our craft is inspiring."
		message " " @envtextLog.word[2] ": 3000–3249"
	else if gtrainerPhrase < "All commend your dedication to our craft."
		message " " @envtextLog.word[2] ": 3250–3499"
	else if gtrainerPhrase < "I marvel at your skill."
		message " " @envtextLog.word[2] ": 3250–3749"
	else if gtrainerPhrase < "You walk where few have tread."
		message " " @envtextLog.word[2] ": 3750–3999"
	else if gtrainerPhrase < "Few stones are unturned in your path."
		message " " @envtextLog.word[2] ": 4000–4249"
	else if gtrainerPhrase < "Your footsteps guide the dedicated."
		message " " @envtextLog.word[2] ": 4250–4749"
	else if gtrainerPhrase < "Your path illuminates the wilderness."
		message " " @envtextLog.word[2] ": 4750–4999"
	else if gtrainerPhrase < "?? /* unknown */"
		message " " @envtextLog.word[2] ": 5000–"
	else if gtrainerPhrase < "Your path is ablaze with glory."
		message " " @envtextLog.word[2] ": 6000–?"
	end if
//------------------------------------------------
// END: Readtext.mac - trainer message by Raul integration
//------------------------------------------------
label exit
}