Page 1 of 1
door
Posted: Sun Jul 25, 2004 11:00 pm
by Riven
well my eyes are burning. What the heck are the door commands.
/door gives the list of doors
/doortarget targets the door you infront of .
so what opens the door.
/keypress Use hold
/keypress use does not work
i cant seem to find out why it wont work.
Posted: Sun Jul 25, 2004 11:57 pm
by Drumstix42
gotta use /itemnotify
that's about all I know

Posted: Mon Jul 26, 2004 2:02 am
by dont_know_at_all
/doortarget <doorname>
/face
/keypress use hold
/delay 1
/keypress use
Posted: Mon Jul 26, 2004 2:21 am
by EQBot_man
Try this Sub I wrote
Code: Select all
Sub OpenDoor
/echo Trying to Open a Door
:OpenDoor
/doortarget
/delay 5
/if (${String[${Switch.Open}].Find["FALSE"]}>0) {
/if (${Target.Name.Find["door"]} && ${Target.Distance}<=12) {
/echo Opening Door. . .
/keypress USE HOLD
/keypress USE
/delay 1s
/if (${Target.Name.Find["door"]} && ${String[${Switch.Open}].Find["TRUE"]}>0) /return
}
} Else {
/if (${Target.Name.Find["door"]} && ${Target.Distance}<=12) {
/keypress USE HOLD
/keypress USE
/delay 4s
}
}
/if (${Target.Distance}>12) {
/face fast nolook
/look 0
/delay 2
/keypress forward hold
/delay 1
/keypress forward
/delay 5
}
/mqgoto :OpenDoor
/return