Ville wrote:When macroing this with razor using the animal form skill if you recieve a pm or go to click on something else or even move sometimes it seems you will be disconnected from the shard . . .
This happens with many macros that go a bit too fast - it can be easily countered by adding a couple Pauses, probably a 500ms between the Cast and WaitForGump and 500ms after the GumpResponse.
Also, many players who run WaitForGump macros will notice disappearing PMs, this is often because the line is WaitForGump(
Any) .. basically meaning that the macro will look for ANY menu that appear, including the little PM icon in the corner (yup, thats a Gump). An easy solution is to select that WaitForGump line, right-click and choose the selection that looks something like WaitForGump(
#1234567890) - this makes the macro wait for that specific menu, instead of just any random one which appears. If you do this, you may also want to right-click on that line again and Edit Timeout, changing it to 3-5s - meaning if that Gump doesn't 'come in focus' within that time, the macro will start over from the top.