With these quests, you gotta change # to the number of the NPC. And place into Quests folder in your EQEMu folder. And make the name of the this file the shortname of the zone you place it in. AKA: Have the NPC as number 3 and it spawns in West Freeport. You change # to 3 and open up notepad and copy paste this in and save as freportw.qst | Simple as that!
A Healer
Code:
NPC_SCRIPT # {
trigger_text:Hail:{
say:I am a healer, do you wish to be [healed]?
}
trigger_text:healed:{
FACE_TARGET
SAY:I shall heal your soul
CAST_SPELL 13
}
A... uhm.. Clarity giver? :P
Code:
NPC_SCRIPT # {
trigger_text:Hail:{
say:I am a Mind Blesser, do you wish to [relax]?
}
trigger_text:relax:{
FACE_TARGET
SAY: I shall relax your soul!
CAST_SPELL 1693
}
A Soul Binder
Code:
NPC_SCRIPT #{
trigger_text:Hail:{
say:I am a soulbinder. I can bind you here. Do you want your [soul binded]?
}
trigger_text:soul binded:{
FACE_TARGET
SAY:I shall bind your soul
CAST_SPELL 35
}
trigger_text:yes:{
FACE_TARGET
SAY:I shall bind your soul
CAST_SPELL 35
}
trigger_text:I want my soul binded:{
FACE_TARGET
SAY:I shall bind your soul
CAST_SPELL 35
}
An NPC that can Flag Accounts:
*Note*
Standard User: 0
Priviledged User: 10
Very Priviledged User: 20
Quester: 80
GM: 100
Lead GM: 150
ServerOP: 200
Debugger:255 (I believe Lyenu also made a Debugger? Which is status 255 but It might not be in this version.)
Set the trigger text to whatever you want. I thought this might be useful to make it so people just hail it and they get PU status if you want people to get Priviledged User.
Code:
NPC_SCRIPT # {
TRIGGER_TEXT:ServerOp:{
FACE_TARGET
FLAG_ACCOUNT 200
}
Just thought these were some goodies some servers might want.
-ZioKaNeo-