Tweety
New Member
- Joined
- Sep 6, 2013
- Messages
- 317
- Reaction score
- 0
Can't find the code for sending mail.
The closed thing that I've found is in the AHBuddy script is:
Will this work on Questing bot base?
Something like:
The closed thing that I've found is in the AHBuddy script is:
Code:
<SubRoutine SubRoutineName="Send C.O.D Mail">
<InteractionAction InteractType="GameObject" Entry="0" InteractDelay="0" GameObjectType="Mailbox" SpellFocus="Anvil" />
<CustomAction Code="Lua.DoString("MailFrameTab2:Click()");" />
<CustomAction Code="SendCod(Recipients, ItemIds, Prices, false);" />
</SubRoutine>
Something like:
Code:
<CustomAction Code="Recipients= "CharName";" />
<CustomAction Code="ItemIds= "1,2,3,4,5";" />
<If Condition="Me.NormalBagsFull">
<CallSubRoutine SubRoutineName="Mail Cloth and other stuff" />
</If>
<SubRoutine SubRoutineName="Mail Cloth and other stuff">
<InteractionAction InteractType="GameObject" Entry="0" InteractDelay="0" GameObjectType="Mailbox" SpellFocus="Anvil" />
<CustomAction Code="Lua.DoString("MailFrameTab2:Click()");" />
<CustomAction Code="SendMail(Recipients, ItemIds);" />
</SubRoutine>