dnt no wut ive done wrong >.<

Mu online season 21 - grand opening

Lucafer

LOMCN Veteran
Veteran
May 15, 2008
419
1
45
Newbury,Berks
im trying to get titles above the name on my char but i just cnt seem to get it to work.


my string.ini:
WarrReNewName=%chrname\*<Warrior>*
WizardReNewName=%chrname\*<Wizard>*
TaosReNewName=%chrname\*<Taoist>*
RankLevelName=%s
ManDearName=%s's Husband
WoManDearName=%s's Wife
MasterName=%s's Master
NoMasterName=%s's Slave
HumanShowName=%chrname\%guildname\%dearname\%mastername


my Qmanage:
[@Login]
#IF
ISNEWHUMAN
#ACT
SETRANKLEVELNAME %s\ Beginner
#IF
CHECKLEVELEX > 50
#ACT
SETRANKLEVELNAME %s\ Novice
#IF
ISADMIN
#ACT
SETRANKLEVELNAME %s\ GameMaster

my M2Server !setup:
ShutRedMsgShowGMName=1
ShowMakeItemMsg=1
ShowGuildName=1
ShowRankLevelName=1 <-------Cant Remember if its 1 or 0
MonSayMsg=1

dunno wut ive done wrong but for sum reason it wont work at all.
 

evildan

LOMCN Veteran
Veteran
Aug 8, 2004
310
3
45
Dartford/Kent
Qfunct put this.

[@logon]
#IF
CHECKLEVELEX > 50
#ACT
SETRANK Title name, Forgot full command.
break

#IF
CHECKLEVELEX > 40
#ACT
SETRANK Title name,
break

#IF
CHECKLEVELEX > 30
#ACT
SETRANK Title name,
break

This will work :P

Just use the proper setrank command and sorted :)

p.s

If you are using subclass you do it like this.

#IF
CHECK [100] 1 <<--- Flag set from choosing subclass (DcWar)
#ACT
SETRANK DcWar
break

Hope this makes some sense :P
 
Upvote 0

Lucafer

LOMCN Veteran
Veteran
May 15, 2008
419
1
45
Newbury,Berks
n1 thanx for the help ill give it a try.

is everything else fine wut i have done agove or does sumthing need changing
 
Last edited:
Upvote 0

JealY

LOMCN VIP
VIP
Nov 28, 2004
5,357
56
335
England
Setup.txt, press CTRL + F (search for rank);

Change
Code:
ShowRankLevelName=0
To
Code:
ShowRankLevelName=1

This should allow ranks.

Then make sure your RankLevelName is =%s\

Edit: You can just make it RankLevelName=%s\Beginner
The one in string.ini is the default one, and new humans are Beginner, but this way when they relog under level 50 and they aren't new it will still say Beginner.

EDIT2: Dunno if this is the problem but remove the spaces here;

Code:
SETRANKLEVELNAME %s\ Beginner

Code:
SETRANKLEVELNAME %s\Beginner
And in the other ranks ofc.
 
Last edited:
Upvote 0