mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
Fix Slime Cube size Fix Cube Fragment destinations (uses moveto and mesh instead of grid) Replace individual perl cube fragment scripts with single lua script Fix perl script error Add area emote triggers
12 lines
No EOL
232 B
Raku
12 lines
No EOL
232 B
Raku
sub EVENT_SPAWN {
|
|
quest::settimer(1,900); #set timer to spawn named placeholders
|
|
quest::spawn_condition($zonesn,1,0);
|
|
}
|
|
|
|
sub EVENT_TIMER {
|
|
if($timer == 1) {
|
|
quest::spawn_condition($zonesn,1,1);
|
|
quest::stoptimer(1);
|
|
|
|
}
|
|
} |