mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
20 lines
No EOL
1.1 KiB
Perl
20 lines
No EOL
1.1 KiB
Perl
# you do not need rallos to get into solrotower so why would he be needed to click up to solro area?
|
|
# removed rallos requirement to click up
|
|
# rallos was required to get to sol ro, not the zone, on live, that is why he was in here. - Reno
|
|
|
|
sub EVENT_CLICKDOOR {
|
|
if($doorid == 44 || $doorid == 45 || $doorid == 47 || $doorid == 48){
|
|
if($qglobals{pop_sol_ro_jiva} == 1 && $qglobals{pop_sol_ro_dresolik} == 1 && $qglobals{pop_sol_ro_arlyxir} == 1 && $qglobals{pop_sol_ro_rizlona} == 1 && $qglobals{pop_sol_ro_xuzl} == 1 && $qglobals{pop_tactics_ralloz} == 1) {
|
|
quest::movepc(212,0,-847,244); # Zone: solrotower
|
|
}
|
|
elsif($qglobals{pop_sol_ro_jiva} != 1 || $qglobals{pop_sol_ro_dresolik} != 1 || $qglobals{pop_sol_ro_arlyxir} != 1 || $qglobals{pop_sol_ro_rizlona} != 1 || $qglobals{pop_sol_ro_xuzl} != 1 || $qglobals{pop_tactics_ralloz} != 1) {
|
|
$client->Message(13, "You lack the will to use this object!");
|
|
}
|
|
}
|
|
$qglobals{pop_tactics_ralloz}=undef;
|
|
$qglobals{pop_sol_ro_arlyxir}=undef;
|
|
$qglobals{pop_sol_ro_dresolik}=undef;
|
|
$qglobals{pop_sol_ro_jiva}=undef;
|
|
$qglobals{pop_sol_ro_rizlona}=undef;
|
|
$qglobals{pop_sol_ro_xuzl}=undef;
|
|
} |