Thread: Different Items
View Single Post
  #8  
Old 03-31-2003, 05:36 AM
Monrezz's Avatar
Monrezz
Dragon
 
Join Date: Mar 2003
Location: #loc
Posts: 745
Default

Okay...now I have this:

Code:
EVENT_SAY { 
if ($1- =~ "Hail") { say("Hail $name . Please, you must rescue me from the God of War. I have been imprisoned here for over 2000 years. He has been keeping me alive...but why? Will you [rescue] me please!") } 
}
EVENT_SAY {
if ($1- =~ "rescue") { say("Oh thank you thank you thank you! I must warn you. He is not like any other Gods I know of. He has only ever been killed once; his health regenerates at an amazing rate and no other God has managed to get his health down noticeably. I have collected his [stats] from the one sucessful attempt on his life. I will give you a very handsome [reward] for his sucessful downfall.") } 
}
EVENT_SAY {
if ($1- =~ "stats") { say("It appears that he has health somewhere in the region of 1000000000 hitpoints. He has a regeneration rate of about 15000 health points a second. He has hit raiding parties for anything up to 10000 points of damage. He can Rampage and Flurry and Enrage and Summon. He is a God. He cannot be killed indefinately yet he can be killed. Once killed he will disapear for about two minutes while his soul creates a new body. In that time you will have access to his corpse. His corpse will have the armour I require on it. Remove it and bring it to me! [How do I know this]? Ask.") } 
}
EVENT_SAY {
if ($1- =~ "How do you know this") { say("One raiding party managed to take him down. There were 50 of them altogether. 10 Warriors. 10 Clerics. 5 Enchanters. 5 Bards. 5 Necromancers. 5 Wizards. 5 Monks. 5 Shaman. The fight lastest hour after hour. Warriors and Clerics were constantly changed. A well organized raid lead by Monrezz. He calculated his stats while the fight wore on. I do not know where this brave sole is now...if only. Anyway back to your [reward].") } 
}
EVENT_SAY {
if ($1- =~ "reward") { say("I will give you armour you have never seen before. Not normal armour but armour even the Gods themselves would like. It will protect you from anything that tries to attack you. Do NOT become careless though...only 2 mortals have ever worn this. I am one, the other...you will find out in time. Heed my advice when wearing it - be careful. I must of course have proof that he is slain however; I am no fool. Bring me 4 pieces of his armour and I shall give you one piece of mine. Return to me with this for your prize.") } 
} 
EVENT_ITEM { 
if ((itemcount(1001) == 1 || itemcount(1002) == 1 || itemcount(1003) == 1 || itemcount(1004) == 1 || itemcount(1005) == 1 || itemcount(1006) == 1 || itemcount(1007) == 1 || itemcount(1008) == 1 || itemcount(1009) == 1 || itemcount(1010) == 1 || itemcount(1011) == 1 || itemcount(1012) == 1) && $itemcount(1002) == 1 && $itemcount(1003) == 1 && $itemcount(1004) == 1) { say("Praise you $name - I knew that you would be victorious. I reward you with this armour and pray that it will help you in your fight against the unholy forces of Norrath.") 
summonitem("1016") 
level("$userid","65") } 
} 
EVENT_DIE { 
say("Noooooo, fool! That will not free me, I will simply resurrected by The God of War, and trapped again!") 
me("King Zaixeleks spirit rises up into the air and is consumed by the spirit of war.") 
level("$userid","60") 
} 
EVENT_SPAWN { 
shout("Please somebody rescue me! I beg of you! You shall be greatly rewarded!") 
} 
/*  Zone:arena  ID:178204 -- King_Zaixelek */ 
/*END of FILE*/
Everything appears to be fine there. The only thing is...still no response from Kinggy when he's hailed. I have the file stored in:
C:\EQEmu\quests\arena
with the file name
178204.qst
(Both there are correct for location / spawnID thing)

No response! Is it something to do with the database...do I need to download something and source it in? Do I need to put anything in the quests folder...?

Thankie again, Monny.
__________________

kRPG Profile
Reply With Quote