PDA

View Full Version : Quest based Translocators?


Glasswalker
12-28-2003, 05:41 AM
Is it possible to have a quested NPC that can relocate to another zone?

Is there a quest system (for .qst format) that will zone the character somewhere? (such as ZoneChar(zoneshort,x,y,z);)

If there is not, if I were to code it and post the code could it be merged in?

I want to quest some stuff that requires translocation...

killspree
12-28-2003, 06:12 AM
MovePC used to do that, I'm not sure if it's still in the code or not though.

devn00b
12-28-2003, 07:02 AM
EVENT_SAY {
if($1- =~ "Hail") {
say("[faydark] [tox] [north] [nek] or [ro]");
}
if($1- =~ "fay") {
castspell("$userid","1336")
}
if($1- =~ "tox") {
say("here you go!!");
castspell("$userid","1337");
}
if($1- =~ "north") {
say("here you go!!!");
castspell("$userid","1338");
}
if($1- =~ "nek") {
say("here you go!!!");
castspell("$userid","1371");
}
if($1- =~ "ro") {
say("here you go!!");
castspell("$userid","1373");
}
}

thats a version of a TL script