Version 1.0 / updated on 2003JN30
Return to the main guides index
This is a mak'ro used to equip an orga eye and to unequip it. The same command is used in both cases, which makes it easy to type the command, wait to be raised and then simply hit return again to unequip the orga eye and re-equip the sunston/sungem. It also puts an annoying reminder in the text window so that you don't forget you have your OE equipped, which is always embarassing.
// This macro use a global variable to set which type of sunstone you have
// You can replace "Sungem" by "Sunstone" for example or "Suncrystal"
set g_sunstone "Sungem"
// The call to invoke the mak'ro is '/eoe' (which stands for 'equip orga eye').
"/eoe" call equip_orga_eye
equip_orga_eye
{
if @my.forehead_item == "orga eye"
"/unequip orga eye\r"
message "Orga Eye Removed"
pause 2
"/equip " g_sunstone "\r"
message g_sunstone " equipped"
goto End
else
"/equip Orga Eye\r"
pause 1
set my_counter 0
goto iloop
end if
label iloop
if @my.forehead_item == "orga eye"
{
message ">>>>> ORGA EYE ON <<<<<"
pause 30
set my_counter +1
if my_counter < 30
goto iloop
else
goto goto End
end if
else
goto End
end if
}
label End
}