This is just to plain out get you drunk... Using the brell's fishing rod, to make it cheap. I guess I'm a cheap date.
This is no work of art, so no need to go into VIP. Ignore it if you like. I just figured I'd post it, since I'm done with it. I have others I might post later, which might be also useful.
Code: Select all
|drunk.mac
|
|Get yer alcohol tolerance skill up. Simple macro. Put in some
| random pauses, just in case anyone is sitting there watching you.
| That way, you can claim, "Oh, I was just sort of clicking while
| watching TV." Which was pretty much true, in my case ... well,
| except for the clicking part. Either way, alcohol tolerance 200 now.
|
| There are two requirements before you start this macro.
|
| 1.) Have a Brell's fishing pole in your main hand.
| 2.) Have slot 8 (your last slot) either empty or have one or
| or more Summoned: Ale in that slot.
|
| If you'd prefer to not have these requirements, feel free to
| edit the macro. It's quite simple enough.
|
| Note: this was originally specific to a necro, but I commented out
| all the stuff that was necro specific. I was in Abysmal Sea
| by one of the NPC armor handin merchants, with him targetted,
| so I could beg without aggro.
#Event SkillUp "You have become better at #1#! (#2#)"
#event TooDrunk "You could not possibly consume more alcohol or become more intoxicated#*#"
sub Main
/echo Starting up,
:loop
/doevents
/autoinv
| Practicing divination skill. Is a free spell, and can click it
| a lot. Take this out if you like. It uses a short period of
| attack on to break invis, so make sure you target an NPC that
| you cannot get aggro on. (or no target) I used an armor turnin
| person in Abysmal Sea, so that I could raise my begging too.
|/alt activate 37
|/att on
|/delay ${Math.Rand[3]}s
|/att off
/call DrinkBeer
| Might as well raise begging too. I had targetted an NPC from
| Abysmal Sea who was non-aggro, so my begging skill went up.
| This was important, since I turned on attack to break invis
| too. So, if you're a necro who is also raising your div skill
| with the invis to undead hotkey, you might wanna also target
| some random non-aggro NPC
/if (${Me.AbilityReady[Begging]}) {
/doability Begging
}
/goto :loop
/return
Sub DrinkBeer
/if (${Me.Skill[Alcohol Tolerance]} < 200) {
/itemnotify mainhand rightmouseup
/delay 3s
/autoinv
/doevents
/autoinv
/delay ${Math.Rand[2]}s
/itemnotify pack8 rightmouseup
/delay 2s
/doevents
} else {
/echo Done!
| Feign death... I'm not sure why I decided to put this in there
| but, well, anyone who sees me AFK would probably expect me to be
| FD since I usually am. /hug FD ability.
|/alt activate 428
| And well, might as well quit macroing... we reached our goal.
/endmac
}
/return
Sub Event_TooDrunk
/declare RandWait
/varcalc RandWait 20+${Math.Rand[10]}
/popup Yer blasted, waiting ${RandWait}s
/delay ${RandWait}s
/return
Sub Event_SkillUp(SkillUpText,SkillName,int Amount)
| This was so I could sit somewhere else and look over and
| see occasional skillups.
/popup ${SkillName} increased - ${Amount} ...
/echo ${SkillName} increased - ${Amount} ...
/return



