Enhanced Client Macros

Aus UOB Wiki
Wechseln zu: Navigation, Suche

Animal Taming Macro

Aus dem offiziellen UO Forum von uo.com, geschrieben von "zima / Matt":

"Dieses Makro ist für das Zähmungstraining gedacht. Ich habe es auch aufgeteilt, um eine Ein-Knopf-Freigabe zu haben, wenn ich Tiere für einen Halter suche, wie zB. Cu Sidhe's oder Mares. Für Support ist es viel einfacher, mich in Discord (Mutt#5435) zu erreichen oder Fragen in meinem Kanal (MECM) zu stellen. VIELEN Dank an PINCO für seine Hilfe dabei. Er konnte die Struktur und die Details bereitstellen, was ohne ihn kaum zu schaffen ist, DANKE! (https://discord.gg/m3tQJVaeCs)
Dieses Makro erfordert, dass das Zähmungsziel ausgewählt ist, indem man entweder auf ein Targeting-Makro klickt oder es durchläuft. Ich habe es so gemacht, um es so universell wie möglich zu machen.
Grundlegende Tastenkombinationen, die man natürlich kennen sollte: STRG + C ist zum Kopieren ausgewählt. STRG + V wird aus der Zwischenablage eingefügt. STRG + X ist Ausschneiden. So kopieren und fügt man die EC-Benutzeroberfläche und alle Text- und Datenfelder ein.
Die ersten 4 Schritte sind das grundlegende Tamer-Makro. Die Schritte 5 bis 9 sind dann das Freigabemakro."

Das Macro im Detail

1. Drag taming skill from skill menu to macro bar

2. Wait for target

3. Cursor target current

4. ACTION menu, OTHER. Drag Delay and set 1 second. (Delay can be decimals, like .8 or 1.5. I am super laggy, and experience lag spikes. 1s seems to cover most of those. For connection sunder 60 ms ping, expect a .025 lag. Which equates to .1. For every 25 ms above that, add in another .025. This lag is in ADDITION to the base wait time)

5. Follow me from the action menu, pet commands. Or you could use the SAY action from the communication commands.

6. Action Menu, select OTHER. Select COMMAND and drag it to the macro bar. First is the command to open the pet context menu. COPY and PASTE this command into the text window (you MUST include everything in bold).

script RequestContextMenu(TargetWindow.TargetId)

7. Second, we select release from the menu. Drag another COMMAND to the macro bar. COPY and PASTE this command into the text window (you MUST include everything in bold).

script ContextMenu.ExecuteMenuItem(138)

8. ACTION menu, OTHER. Drag Delay and set 1 second. This is to wait for the release confirmation gump. Third, click OK on the release confirmation gump. Drag another COMMAND to the macro bar. COPY and PASTE this command into the text window (you MUST include everything in bold).

script GumpsParsing.PressButton(601,1)

9. Last, we close the context menu. Drag another COMMAND to the macro bar. COPY and PASTE this command into the text window (you MUST include everything in bold).

script WindowSetShowing("ContextMenu", false)

Weitere Informationen zum Thema