mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
10 lines
No EOL
496 B
Perl
10 lines
No EOL
496 B
Perl
sub EVENT_CLICKDOOR {
|
|
if(($doorid == 3) && ($entity_list->IsMobSpawnedByNpcTypeID(228119) || $entity_list->IsMobSpawnedByNpcTypeID(228120))){
|
|
$client->Message(0,"You got the door open.");
|
|
quest::movepc(228,-1066,-48,-284,380); # Zone: hatesfury
|
|
}
|
|
if(($doorid == 4) && ($entity_list->IsMobSpawnedByNpcTypeID(228119) || $entity_list->IsMobSpawnedByNpcTypeID(228120))){
|
|
$client->Message(0,"You got the door open.");
|
|
quest::movepc(228,-1360,-290,74,128); # Zone: hatesfury
|
|
}
|
|
} |