Getting Started
Rules
Character Mover
Optimization Guide
EZ Wiki
EZ Guide
Magelo
Zone List
Spell Recipes
T10.5 Spell Recipes
Crafting Recipes
Donate
EZ Player Discord
EZ Server Files
EZ Client Downloads
Custom UF MiniMap
Custom UF Inventory
EQEmulator Home
Allakhazam Home
UFMissingFilesList
TwitchTV
#Event CountAA "Unspent AA: #1#" #Event MaxHP "Max HP: #1#" #Event CurrentAA "#*# now have #1# ability points." #Event FindItem "[MQ2] finditem #1#" Sub Main() :Primeloop /doevents /goto :Primeloop /return |===================================================| SUB: Event_CountAA|=================================================== Sub Event_CountAA(Line, AACount) /bc Total AA: ${AACount} /return|===================================================| SUB: Event_MaxHP|=================================================== Sub Event_MaxHP(Line, HPCount) /bc Total HP: ${HPCount} /return |===================================================| SUB: Event_CurrentAA|=================================================== Sub Event_CurrentAA(Line, WhatsMyAA) /varset CurrentAA ${WhatsMyAA} /return |-----------------------------------------------------------------------------------------------| SUB: Event_FindItem|----------------------------------------------------------------------------------------------- Sub Event_FindItem(Line, whichItem) /docommand ${If[${FindItemCount[${whichItem}]} > 0,/bc ${FindItemCount[${whichItem}]} ${FindItem[${whichItem}]} in inventory,/bc None in inventory]} /docommand ${If[${FindItemBankCount[${whichItem}]},/bc ${FindItemBankCount[${whichItem}]} ${FindItemBank[${whichItem}]} in bank,/bc None in bank]} /return
#Event CountAA "Unspent AA: #1#" #Event MaxHP "Max HP: #1#" #Event CurrentAA "#*# now have #1# ability points." #Event FindItem "[MQ2] finditem #1#" #Event InviteAllNetBotsClientsCurrentZoneRaid "#*#inviteall raid#*#" #Event InviteSuppliedTypeAndZone "#*#invite to #1# #2#" #Event Inviter "#3# tells you, 'invite me to instance #1# #2#'" Sub Main() :Primeloop /doevents /goto :Primeloop /return |===================================================| SUB: Event_CountAA|=================================================== Sub Event_CountAA(Line, AACount) /bc Total AA: ${AACount} /return|===================================================| SUB: Event_MaxHP|=================================================== Sub Event_MaxHP(Line, HPCount) /bc Total HP: ${HPCount} /return |===================================================| SUB: Event_CurrentAA|=================================================== Sub Event_CurrentAA(Line, WhatsMyAA) /varset CurrentAA ${WhatsMyAA} /return |-----------------------------------------------------------------------------------------------| SUB: Event_FindItem|----------------------------------------------------------------------------------------------- Sub Event_FindItem(Line, whichItem) /docommand ${If[${FindItemCount[${whichItem}]} > 0,/bc ${FindItemCount[${whichItem}]} ${FindItem[${whichItem}]} in inventory,/bc None in inventory]} /docommand ${If[${FindItemBankCount[${whichItem}]},/bc ${FindItemBankCount[${whichItem}]} ${FindItemBank[${whichItem}]} in bank,/bc None in bank]} /return|===================================================| SUB: Event_InviteAllNetBotsClientsCurrentZoneRaid|=================================================== Sub Event_InviteAllNetBotsClientsCurrentZoneRaid /declare i int /for i 1 to ${NetBots.Counts} /say raid invite ${Zone.ShortName} ${NetBots.Client.Arg[${i}, ]} /next i /return |===================================================| SUB: Event_InviteSuppliedTypeAndZone|=================================================== Sub Event_InviteSuppliedTypeAndZoneTypeAndZone(Line,whichZone,whichType) /declare j int /for j 1 to ${NetBots.Counts} /say ${whichType} invite ${whichZone} ${NetBots.Client[${j}]} /next j /return|===================================================| Sub Event_Inviter|=================================================== Sub Event_Inviter(Line,whatZone,whatType,InviteMe) /say ${whatType} invite ${whatZone} ${InviteMe} /return
Sub Main() /bc Summoning some Mystery Meat, this should net you 100 by the time it's done :Primeloop /call ClickFood /goto :Primeloop /return |=====================================================================| SUB ClickFood|===================================================================== Sub ClickFood /if (${Me.FreeInventory} > 0) { /if (${FindItem[embalmers].ID}) { /if (${FindItemCount[mystery]} < 100) { /casting 29280 /timed 55 /autoinventory /delay 1s } } } /return