Thread: Quest help plz!
View Single Post
  #2  
Old 03-01-2007, 01:24 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by Arag
ok guys im starting to pull my hair out!!!! i am reading the forums and wikki over and over fr hours now!!
i just cant find what im doing wrong
i havewrighted a few quest so far and they all worked fine but now its just real horror!

here is the quest that i cant get to work ..


sub EVENT_SAY {
if($text=~/Hail/i) {
quest::say("hahaha $name. Do you realy think that you got what it Takes to (join the guild) of Darkness ? ");
}
if ($text=~/join/i) {
quest::setguild(1,0);
quest::summonitem(63096);
quest::exp(1500);
quest::say(" hmm $name. Might you Do have some balls .. We Wil see on The Battelfield how evil you can be! Now Leave and Fight! ");
}
}

the hailing works! i also get the Exp and i get the item in return..
he only not invites me to the guild ?

thanks for the help and interest!!!!
I don't have time to look up the quest::setguild - but search the Wikki - this here is better English;

Code:
quest::emote("chuckles,'So $name, Do you realy think that you have what it takes to [join] The Guild of Darkness ?'");

quest::say("hmm $name, maybe you do have some balls ... We will see how evil you can be on the battelfield. Go now and Fight! ");
I can look later on tonight if no one else can and you remind me.

Last edited by Angelox; 03-01-2007 at 09:28 AM..
Reply With Quote