A big thank you to Jakeyray18 for fixing the /inspect issue completely. 1. First you need to open your macro screen. The default is [Shift] + [~]. 2. Once open you need to click on the Text Editor Button in the bottom right corner: Spoiler 3. It'll bring you to this following screen. Once there you have to make a new txt file: Spoiler 4. It'll bring you to the Text Editor. This is what you have to paste in it then click save: Code: $${ STRIP(&chat,%CHATCLEAN%) IFMATCHES(%&chat%,"^If you don't have access to a skill it will not be shown here\.") SET(mystats) ENDIF IFMATCHES(%&chat%,^Excavation skill increased by 1. Total \(([0-9,0-9]+)\),#exca,1) SETLABEL(excavation,Excavation: %#exca%) ENDIF IFMATCHES(%&chat%,^Fishing skill increased by 1. Total \(([0-9,0-9]+)\),#fish,1) SETLABEL(fishing,Fishing: %#fish%) ENDIF IFMATCHES(%&chat%,^Herbalism skill increased by 1. Total \(([0-9,0-9]+)\),#herb,1) SETLABEL(herbalism,Herbalism: %#herb%) ENDIF IFMATCHES(%&chat%,^Mining skill increased by 1. Total \(([0-9,0-9]+)\),#mine,1) SETLABEL(mining,Mining: %#mine%) ENDIF IFMATCHES(%&chat%,^Woodcutting skill increased by 1. Total \(([0-9,0-9]+)\),#wood,1) SETLABEL(woodcutting,Woodcutting: %#wood%) ENDIF IFMATCHES(%&chat%,^Axes skill increased by 1. Total \(([0-9,0-9]+)\),#axe,1) SETLABEL(axes,Axes: %#axe%) ENDIF IFMATCHES(%&chat%,^Archery skill increased by 1. Total \(([0-9,0-9]+)\),#bow,1) SETLABEL(archery,Archery: %#bow%) ENDIF IFMATCHES(%&chat%,^Swords skill increased by 1. Total \(([0-9,0-9]+)\),#sword,1) SETLABEL(swords,Swords: %#sword%) ENDIF IFMATCHES(%&chat%,^Unarmed skill increased by 1. Total \(([0-9,0-9]+)\),#hand,1) SETLABEL(unarmed,Unarmed: %#hand%) ENDIF IFMATCHES(%&chat%,^Acrobatics skill increased by 1. Total \(([0-9,0-9]+)\),#acro,1) SETLABEL(acrobatics,Acrobatics: %#acro%) ENDIF IF(mystats == true) IFMATCHES(%&chat%,"^Excavation: ([0-9,0-9]+)",#exca,1) SETLABEL(excavation,Excavation: %#exca%) ENDIF IFMATCHES(%&chat%,"^Fishing: ([0-9,0-9]+)",#fish,1) SETLABEL(fishing,Fishing: %#fish%) ENDIF IFMATCHES(%&chat%,"^Herbalism: ([0-9,0-9]+)",#herb,1) SETLABEL(herbalism,Herbalism: %#herb%) ENDIF IFMATCHES(%&chat%,"^Mining: ([0-9,0-9]+)",#mine,1) SETLABEL(mining,Mining: %#mine%) ENDIF IFMATCHES(%&chat%,"^Woodcutting: ([0-9,0-9]+)",#wood,1) SETLABEL(woodcutting,Woodcutting: %#wood%) ENDIF IFMATCHES(%&chat%,"^Axes: ([0-9,0-9]+)",#axe,1) SETLABEL(axes,Axes: %#axe%) ENDIF IFMATCHES(%&chat%,"^Archery: ([0-9,0-9]+)",#bow,1) SETLABEL(archery,Archery: %#bow%) ENDIF IFMATCHES(%&chat%,"^Swords: ([0-9,0-9]+)",#sword,1) SETLABEL(swords,Swords: %#sword%) ENDIF IFMATCHES(%&chat%,"^Unarmed: ([0-9,0-9]+)",#hand,1) SETLABEL(unarmed,Unarmed: %#hand%) ENDIF IFMATCHES(%&chat%,"^Acrobatics: ([0-9,0-9]+)",#acro,1) SETLABEL(acrobatics,Acrobatics: %#acro%) ENDIF ENDIF WAIT(5) UNSET(mystats) }$$ 5. Now it'll bring you back to the Macro screen. Once there click the right yellow arrow at the top: Spoiler 6. Click the onChat: Spoiler 7. Then you have to add $$<McMMO.txt> (or whatever you named the file in step 3) in the text box in the bottom (WARNING: if this is not your first macro you have to add a pipe [|] after whatever is already written there, without spaces, before you do this): Spoiler All you have to do now is Make labels that will display your New Macro 8. Click the right yellow arrow at the top again: Spoiler 9. Once there you'll make a new label and put it anywhere you want it Spoiler 10. Once you do, it'll start asking for information: Spoiler You will need to make a label for each indivibual mcmmo skill that you wish to see and put the following in Box1(Control Name) of the label and make sure all letters are lowercase: excavation to see Excavation fishing to see Fishing herbalism to see Herbalism mining to see Mining woodcutting to see WoodCutting axes to see Axes archery to see Archery swords to see Swords unarmed to see Unarmed acrobatics to see Acrobatics Use /mcstats or /stats and You're done. You can now use /inspect <player> on other players without it updating your gui. If you get stuck post here and several people including myself will try to help you. Here's what it looks like for me on the right hand side: Spoiler
sprayware the acrobatics isnt working for me. Edit: i got it to work. You may want to change the red letters that say what to put and change the mcmmoa to mcmmo0
Ive realized that if anyone in any chat says anything suck as "my axes: 1000" it will update you axes to 1000. For example, if i say in chat "Swords: 1000", then it will say in the macro that my swords are 1000. Also if you inspect other players it will update to their stats.
Alright people I have fixed the macro a little...Made it smaller so there is less clutter. I have also fixed it so people can't troll you by faking the mcMMO message and I edited the first post and previous message to reflect these changes as well. I am also still working on making /inspect usable without it changing your stats to someone elses other than your own with the help of Jakeray18, rockboy2000, sick24, and spidawg.
Alright people another little update. I semi fixed the problem with /inspect <player> updating your gui to someone else's stats by moving stuff around. You can now use /inspect <player> on other players without it updating your gui. However if the need arises for you to use /mcstats or /stats again you must use it twice in a row. The first post has been updated accordingly with the updated script but here it is again: [omitted]
Final update made to the first post. A big thank you to Jakeyray18 for fixing the /inspect issue 100%