PDA

View Full Version : Need Help Please


Sakrateri
09-28-2004, 10:33 PM
I am trying to make quests up that are using quest::summonitem but when the people on my server try to do them it is saying , your not a GM to summon this item , I dont want everyone to have the #si command, is ther any way to get this to work ?? here is an example

sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Hail and well met my friend. Please you must hurry and take this ring to Giz XTin in Kithicor he will know what its for.");
quest::summonitem("20446");}
}

#END of FILE Zone:gfaydark ID:281424 -- Faelin_Bloodbriar


thanks for any help ,Sak


Oh but this summonitem quests works for them ??

sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("How are you. my friend? I am so hungry. could you do me a [favor]. I will make it worth your while.");
}
if($text=~/I will do a favor/i){
quest::say("Good. If you could run to Iludarae and ask her for some food for me I would really appriciate it. Oh and give her this.");
quest::summonitem("16608");}
}
sub EVENT_ITEM {
if($itemcount{22853} == 1){
quest::say("Good work. $name!! You have earned this reward. It is all I can spare at the time. Oh geeze and she BURNT THE BREAD AGAIN , Sigh.");
quest::summonitem("0");
quest::givecash("0","0","5","1");
quest::faction("Not_Found","1"); }
}
#END of FILE Zone:gfaydark ID:54118 -- Guard_Fayfield

mabey because the ring is no drop??

Muuss
09-29-2004, 12:06 AM
The ring is perhaps a GM only item, meaning only players with GM rank can own it.

Sakrateri
09-29-2004, 01:53 AM
Yep , that was it , sorry for the dumb question , I was looking at the wrong line with MYSQL front