mob lvls

turboeq

Premium Member
Joined
Mar 15, 2007
Messages
109
Reaction score
1
Points
18
Is there a way to target a mob and tell what lvl it?
 
you can also target by level range

Single level
/target npc range 55 55

range of levels
/target npc range 75 85
 
If you just want a single level, you don't even have to type range and the number twice. You can just to /tar npc 55 to target the closest lvl 55 npc.
 
Code:
TargetLevel1=3,5,347,255,255,255,Target Level
TargetLevel2=3,101,347,0,255,0,=
TargetLevel3=3,112,347,255,2,155,${If[${Target.ID},${Target.Level},]}

Drop that into you hud, moving it where you want.

For reference, my full target info from hud:
Code:
LOS=3,5,287,50,255,0,${If[${Target.ID} && ${Target.LineOfSight},Target is in LoS,]}
NOLOS=3,5,287,255,30,0,${If[${Target.ID} && !${Target.LineOfSight},Target is NOT in LoS,]}

TargetName1=3,5,299,255,255,255,Target Name
TargetName2=3,101,299,0,255,0,=
TargetName3=3,112,299,255,255,255,${If[${Target.ID},${Target.AATitle} ${Target.CleanName} ${Target.Surname},]}

TargetGuild1=3,5,311,255,255,255,Target Guild
TargetGuild2=3,101,311,0,255,0,=
TargetGuild3=3,112,311,255,255,255,${If[${Target.Guild.NotEqual["NULL"]},${Target.Guild},]}

TargetGuildStatus1=3,5,323,255,255,255,Target Guild Status
TargetGuildStatus2=3,101,323,0,255,0,=
TargetGuildStatus3=3,112,323,255,255,255,${If[${Target.GuildStatus.NotEqual["NULL"]},${Target.GuildStatus},]}

TargetClass1=3,5,335,255,255,255,Target Class
TargetClass2=3,101,335,0,255,0,=
TargetClass3=3,112,335,255,255,255,${If[${Target.ID},${Target.Class},]}

TargetLevel1=3,5,347,255,255,255,Target Level
TargetLevel2=3,101,347,0,255,0,=
TargetLevel3=3,112,347,255,2,155,${If[${Target.ID},${Target.Level},]}

TargetRace1=3,5,359,255,255,255,Target Race
TargetRace2=3,101,359,0,255,0,=
TargetRace3=3,112,359,255,255,255,${If[${Target.ID},${Target.Race},]}

TargetSpeed1=3,5,371,255,255,255,Target Speed
TargetSpeed2=3,101,371,0,255,0,=
TargetSpeed3=3,112,371,2,255,255,${If[${Target.ID},${Target.Speed},]}

TargetHPs1=3,5,383,255,255,255,Target Current HP
TargetHPs2=3,101,383,0,255,0,=
TargetHPs3=3,112,383,255,255,255,${If[${Target.ID},${Target.CurrentHPs} / ${Target.MaxHPs},]}

TargetDeity1=3,5,395,255,255,255,Target Religion
TargetDeity2=3,101,395,0,255,0,=
TargetDeity3=3,112,395,255,255,255,${If[${Target.ID},${Target.Deity},]}

TargetType1=3,5,407,255,255,255,Target Type
TargetType2=3,101,407,0,255,0,=
TargetType3=3,112,407,255,255,255,${If[${Target.ID},${Target.Type},]}

TargetMaxRange1=3,5,419,255,255,255,Max Melee Range
TargetMaxRange2=3,101,419,0,255,0,=
TargetMaxRange3=3,112,419,255,255,255,${If[${Target.ID},${Target.MaxRange},]}

Attached a pic so you can see.
 

Attachments

  • targethud.jpg
    targethud.jpg
    14 KB · Views: 50
Last edited:
Thanx Hawthorne that is what i was lookin for thanx a bunch.
 
there is a plugin in here somewhere (hover maybe dont remember) but will tell u the class and lvl of mob u are targetting

go the faq section and youll see desc in there
 
You can also target a mob and type /whotarget (or just /whot) if you just want to display the level of your current target in the mq2 chat box. If you want to use it in a script or something, the TLO unity posted or the target info JJ posted will obviously be much better, but if you just want to know it, /whot works fine.
 
there is a plugin in here somewhere (hover maybe dont remember) but will tell u the class and lvl of mob u are targetting

go the faq section and youll see desc in there

MQ2HoverInfo i believe