Code: Select all
UMM_SendMoney("recipient", inventory.Money - 1000)
Code: Select all
UMM_SendMoney("recipient", inventory.Money - 1000)
Code: Select all
Fusion_MakeMaxManaStones(9) -- Make tier 9 stones
sendMacro("CloseAllWindows()");
repeat
UMM_TakeMail()
Fusion_MakeMaxManaStones(9) -- Make tier 9 stones
yrest(500)
if mailcount == 30 then
--...close then open mail again
sendMacro("CloseAllWindows()");
inventory:update();
player:target_Object(112778); yrest(1000); -- mailbox
end
until mailcount ~= 30
UMM_TakeMail()
sendMacro("CloseAllWindows()");
player:sleep()
Code: Select all
Fusion_MakeMaxManaStones(9) -- Make tier 9 stones
local mailcount
repeat
sendMacro("CloseAllWindows()");
player:target_Object(112778); yrest(1000); -- mailbox
mailcount = RoMScript("UMMMailManager.MailCount")
UMM_TakeMail()
Fusion_MakeMaxManaStones(9) -- Make tier 9 stones
yrest(500)
until mailcount ~= 30
sendMacro("CloseAllWindows()");
player:sleep()
Code: Select all
UMM_SendByNameOrId("Char",{"206592","Nightmare Essence","Wisdom Core","206590"})
Code: Select all
local debugfilter = true
It's interesting that these are the ones I can't donate either...Alexxx wrote:I have tried multiple of your mailing functions, but I have been unable to send Moonlight Pearls, Nightmare essence, Wisdom cores, or Magic Fortune Grass by mail. The error I always seem to get is "Nothing to send."
Code: Select all
UMM_SendByNameOrId("Char",{"206592","Nightmare Essence","Wisdom Core","206590"})
Code: Select all
UMM_SendByNameOrId("charname"),{"itemname1","itemname2"})
Code: Select all
Sending items by name or id.
Steintotemfragm slot114 Bound
30-Tage-Vertrag slot115 Bound
Zertifikat: Der slot116 Bound
Medaille der Ru slot117 Bound
Phiriusmarke slot118 Bound
Phiriusmarke slot119 Bound
Phiriusmarke slot120 Bound
[..]
Sorry I forgot to switch the debug off. Change line 245 of addon_Rock5s_Mail_mod.lua toRickster wrote:it prints out the following in the MM window for each bag slot which is not empty:
Code: Select all
local debugfilter = false
If you leave the mailbox open then change character then it will have that problem. It's always been that way. Make sure you close the mailbox before relogging.Rickster wrote:When using the mailbox a second time or another mailbox somewhere else i get the on screen message, that execution is not possible, and that the postbox interface should be closed first.
but the interface is not open, at least it is not visible to me
Code: Select all
/script MailFrame:Show()
That could have been the problem. I am changing char, right after checking mail ...rock5 wrote:If you leave the mailbox open then change character then it will have that problem. It's always been that way. Make sure you close the mailbox before relogging.
Code: Select all
RoMScript("MailFrame:Hide()")
First you need to explain a bit more. Do you want to send x amount of items to each character or do you want to send certain items to one character and other items to other characters?minhtien86 wrote:how do i send to a char list? i want to send item to many chars . Anyone help?
Code: Select all
chars = {"name1","name2","name3"}
for k,recipient in pairs(chars) do
UMM_SendByNameOrId(recipient , "Random Fusion Stone", 9)
end
Users browsing this forum: No registered users and 1 guest