View Single Post
  #7  
Old 06-02-2003, 08:46 AM
muhi
Fire Beetle
 
Join Date: May 2003
Posts: 26
Default quests

Hiya

The translocator is now working part-way, she says all the usual stuff but doesn't actually bind me or cast the spell :

EVENT_SAY{
if ($1-=~ "Hail") { say("Greetings $name . When a hero of our world is slain. their soul returns to the place it was last bound and the body is reincarnated. As a member of the Order of Eternity. it is my duty to [bind your soul] to this location if that is your wish.") }
if ($1-=~ "bind my soul") { say("Very well. You will return to this spot when you die.") castspell($userid,2049) }
}


and trainer perkins doesn't work at all when hailed

TRIGGER_TEXT:Hail:{
SAY:Hello there %charname%, I am Trainer Perkins. Would you like to train Med, Channeling, backstab, [med] [channeling] [backstab]
}

TRIGGER_TEXT:med:{
SAY:So be it!
setskill 31 1
}

TRIGGER_TEXT:channeling:{
SAY:So be it!
setskill 13 1
}


TRIGGER_TEXT:backstab:{
SAY:So be it!
setskill 8 1
}
Reply With Quote