When some one does a major level,,,,,

Play Now

redwolf187

Dedicated Member
Dedicated Member
Aug 3, 2008
33
0
32
as above , how do i make it so that when someone ongame does a major level it shouts out <$USERNAME>has just reached level 7 GRATZ
 

Dazz

LOMCN Veteran
Veteran
Apr 12, 2008
296
0
43
QFunction or QManage cant remember which

[@levelup]
#IF
CHECKLEVELEX = 30
#ACT
SENDMSG 1 <$USERNMAE> has just reached level 30, GRATS!

Qmanage lives in Envir/Mapquest_def

Qfunction lives in Envir/Merchant_def - i think

/Daz
 
Upvote 0

TheMightyOne

Golden Oldie
Golden Oldie
Jun 14, 2004
722
3
104
UnitedKingdom
In your QuestDiary Folder create a folder named LevelUp, create a txt file inside that and name it level7
Inside that file put this.
[@level7]
{
#IF
CHECKLEVELEX = 7
goto @level7shout
#ELSEACT
break


[@level7shout]
#ACT
Sendmsg 1 "<$USERNAME> Has just reached Level 7."
}

Then in your Q-function put.
[@LevelUp]
#IF
CHECKLEVELEX = 7
#CALL [..\QuestDiary\LevelUp\level7.txt] @level7
break


I think that is right. Not tested it, but give it a go.
 
Last edited:
Upvote 0