- Joined
- Apr 5, 2007
- Messages
- 15
- Reaction score
- 0
I have been messing about with macros and if you make a couple up you can fly (well sort of)
Firstly we need to make the mount then dismount macro
-------------------------------------------------
-------------------------------------------------
create a macro called MOUNT
add to the following code
.reload 147 17890
.reload2 40
.speed 4 (only if you are a GM)
-------------------------------------------------
-------------------------------------------------
create a macro called DISMOUNT
add to the following code
.reload4
.speed 1(only if you are a GM)
Then create the Fly Up and Fly Down Macro
-------------------------------------------------
-------------------------------------------------
create a macro called FLY UP
You can assign the macro to a keystroke if you want
add to the following code
/script PlayerX,PlayerY,PlayerZ=GetPlayerMapPosition("player")
/script PlayerZ=PlayerZ+1
.go PlayerX PlayerY PlayerZ
-------------------------------------------------
-------------------------------------------------
create a macro called FLY DOWN
You can assign the macro to a keystroke if you want
add to the following code
/script PlayerX,PlayerY,PlayerZ=GetPlayerMapPosition("player")
/script PlayerZ=PlayerZ-1
.go PlayerX PlayerY PlayerZ
I know these are a bit primitave but i am sure with all of your expert knowladge on marcos you lot should be able to refine things, like if you try to dismount when you are above the ground you will stay floating etc etc
Also I think the .go will only work for gm`s so if their is an alternative script to allow player to use this sort of thing please let me know, or even if you know how to make custom commands that would be usefull.
good luck...
Firstly we need to make the mount then dismount macro
-------------------------------------------------
-------------------------------------------------
create a macro called MOUNT
add to the following code
.reload 147 17890
.reload2 40
.speed 4 (only if you are a GM)
-------------------------------------------------
-------------------------------------------------
create a macro called DISMOUNT
add to the following code
.reload4
.speed 1(only if you are a GM)
Then create the Fly Up and Fly Down Macro
-------------------------------------------------
-------------------------------------------------
create a macro called FLY UP
You can assign the macro to a keystroke if you want
add to the following code
/script PlayerX,PlayerY,PlayerZ=GetPlayerMapPosition("player")
/script PlayerZ=PlayerZ+1
.go PlayerX PlayerY PlayerZ
-------------------------------------------------
-------------------------------------------------
create a macro called FLY DOWN
You can assign the macro to a keystroke if you want
add to the following code
/script PlayerX,PlayerY,PlayerZ=GetPlayerMapPosition("player")
/script PlayerZ=PlayerZ-1
.go PlayerX PlayerY PlayerZ
I know these are a bit primitave but i am sure with all of your expert knowladge on marcos you lot should be able to refine things, like if you try to dismount when you are above the ground you will stay floating etc etc
Also I think the .go will only work for gm`s so if their is an alternative script to allow player to use this sort of thing please let me know, or even if you know how to make custom commands that would be usefull.
good luck...