Thread: Different Items
View Single Post
  #5  
Old 03-30-2003, 07:46 AM
Monrezz's Avatar
Monrezz
Dragon
 
Join Date: Mar 2003
Location: #loc
Posts: 745
Default

Thanks!

Okay now I have this (Have changed it a bit) :

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!") } 
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 appears to be invincible; his health regenerates at an amazing rate and no other God has managed to get his health down noticeably. Many guilds and coordinated raids have been attempted on him. None have been sucessful! But you must please try...you don't know what it's like! I will give you a very handsome [reward] for his sucessful downfall.") } 
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*/
I have it here:

"C:\EQEmu\quests\arena\178204.qst"

Yet when I am in the game, Hailing him has no effect, killing him has no effect, spawning him has no effect, giving him the items has no effect...any ideas?
__________________

kRPG Profile
Reply With Quote