As the title above says this is just a simple tutorial I threw together in 20 minutes so if there is something to do with making the label to display on the screen check out some of my other macro tutorials in our tutorial section on the forums. Ok so if you look up in the top right corner of the below screenshot you will see what our coordinate display is going to look like, or at least somewhat of what it should look like, remember you can place the label anywhere on the screen when you are creating it: 1. So firstly we need to create the label that our coordinates are going to be displayed in, to do this while in-game hit your macro activate key (can be found in controls if you don't know what it is) and click the "edit GUI" button in the lower right corner of the screen, as shown below: Then if the screen that appears in the lower left corner click the "Button Panel Commands" button and click "add label": You can them place the label anywhere on that screen that you want to, personally I prefer the top right corner but that's just me. When you have placed the label where you want it a small window will appear asking you to set the details of the button, in this window you must set the "control name" to say "position" as shown below then hit "ok": 2. Now we need to write the script that is going to make the label display our current position, to do this press your "macro activate" key while holding crouch to display another GUI if this one displays a keyboard for you then hit the right arrow next to "macro bindings: Keys" in the upper left corner to move to the events page. Then in the lower right corner hit the button labeled "..I" as shown in the screenshot below: in the screen that appears we need to create a new file and call it "coordinates" and hit "create" as show below: In the following screen you will need to copy paste the code (below) into the text field and then hit save in the lower right corner. Code: $${ DO; SETLABEL(position,X: %XPOS% Y: %YPOS% Z: %ZPOS%,position) WAIT(20ms) LOOP; }$$ Now that we have made that we need to have it run the script, to do this you need to return to your "macro bindings: events" screen and hit "onJoinGame", in the window that appears at the bottom of the screen in the text box write "$$<coordinates.txt>" if Like me you have multiple things that need to be assigned there you can do it like so "$$<balloop.txt>|$$<coordinates.txt>" in other words just separate it with a pipe "|", then you can just hit save in the lower right corner again. You will have to relog before the label will start to tell you coordinates but once you have done that it should do it without any problems, if you have difficulty or a problem please message me here on the forums instead of in game it makes it a lot easier to solve the problem person to person rather than around 200 people. Thanks and enjoy -Jakey
THANK YOU SO MUCH!!! Note: jakeyray18 i would like a xp macro! Just, i know as a supermod life is busy, and so yea, but when you get the chance, go ahead! Also i will pay $100 for a working exp tutorial!
Try switching the order of the two and if it still doesn't work send me both the scripts and I'll combine them for you into one
Make sure the .txt is Code: $${ DO; SETLABEL(position,X: %XPOS% Y: %YPOS% Z: %ZPOS%,position) WAIT(20ms) LOOP; }$$ And then make sure the [ON JOIN GAME] looks like If you have the Ballop.txt, and want the coordinates, it should look like Code: $<Balloop.txt>|$$<coordinates.txt> If you do not have the Balloop, then do Code: $$<Coordinates.txt>
Lee1104 if that does not work delete both the balloop and the coordinates and create a new file called "Lee1104Login" and paste this script into the file and lpace in in your onJoinGame event and then relog, it should solve your problem: Code: $${ IF(%SERVER% == "mc.ecocitycraft.com"); DO; Echo("/bal"); DO(90); SETLABEL(position,X: %XPOS% Y: %YPOS% Z: %ZPOS%,position); WAIT(100ms); LOOP; LOOP; }$$
Okay, now it says I am temporarily denied to join the server... Nevermind its fixed. Thanks for the help
I'm pretty new to macro mod and I'm stuck at step 2 trying to pull up a second macro gui... when I press crouch + macroactivate (shift+~ for me) nothing happens. I've tried changing the hotkeys for sneak and macroactivate to see if it was just a weird thing with my keyboard, but nothing seems to work :/ Any advice would be much appreciated, thanks!