Code: Select all
|**
Skylab.mac written by Simkin (Version 1.0 December 30th, 2006)
Skylance: The Laboratory emote listener
This macro will tell you which item to click and warn you when
you have one more click left before Tallongast spawns.
**|
#Event Tools "Remove the necrotic#*#"
#Event Pedestal "Use the Trans-Injector#*#"
#Event Pillar "From the ether#*#"
#Event EastP "A good dose of ethereal#*#"
#Event Gumball "The Dispenser#*#"
#Event SouthP "Switch on the#*#"
#Event Still "Distill the magical#*#"
#Event WestP "The Gaze-O-Rama#*#"
Sub Main
/declare counter int outer 0
/echo Skylance: The Laboratory Macro Started !
:Main_Loop
/doevents
/goto :Main_Loop
/return
Sub Event_Tools
/varcalc counter ${counter}+1
/echo North platform, click the table with tools on it (Click #${counter})
/popup North platform, click the table with tools on it
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_Pedestal
/varcalc counter ${counter}+1
/echo North platform, click the pedestal (Click #${counter})
/popup North platform, click the pedestal
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_Pillar
/varcalc counter ${counter}+1
/echo East platform, click the domed pillar on it (Click #${counter})
/popup East platform, click the domed pillar
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_EastP
/varcalc counter ${counter}+1
/echo East platform, click the pedestal (Click #${counter})
/popup East platform, click the pedestal
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_Gumball
/varcalc counter ${counter}+1
/echo South platform, click the gumball machine (Click #${counter})
/popup South platform, click the gumball machine
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_SouthP
/varcalc counter ${counter}+1
/echo South platform, click the pedestal (Click #${counter})
/popup South platform, click the pedestal
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_Still
/varcalc counter ${counter}+1
/echo West platform, click the still (Click #${counter})
/popup West platform, click the still
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
Sub Event_WestP
/varcalc counter ${counter}+1
/echo West platform, click the pedestal (Click #${counter})
/popup West platform, click the pedestal
/if (${counter} == 8) {
/popup FINAL CLICK BE READY ! !
/echo FINAL CLICK BE READY
}
/return
