Ringmail Purse Timing

fuzzypawz

Member
Sorry if this has already been addressed, but I couldnt find any information on this...

Is there any way I can get my 4 bots with ringmail purses to use them in a sequential order ... say 30 seconds apart so that I always have one up?
 

Yorkie

Active Member
I was gonna ask for info on the same issue, I even tried the button on Mcp thing but that didn't work either tried with the full name of the purse and with "item" in front both ways didn't work. There must be a way to do this at different times on multiple chars. Any help would be greatly appreciated.

K...
 

Cheesy

Well-Known Member
I was gonna ask for info on the same issue, I even tried the button on Mcp thing but that didn't work either tried with the full name of the purse and with "item" in front both ways didn't work. There must be a way to do this at different times on multiple chars. Any help would be greatly appreciated.

K...
UseItem...

Parameter 1 - Toon Name
Parameter 2 - Ahrmatal's Ringmail Purse

Make sure to add the item to your toons available list via the items tab.
 

Yorkie

Active Member
UseItem...

Parameter 1 - Toon Name
Parameter 2 - Ahrmatal's Ringmail Purse

Make sure to add the item to your toons available list via the items tab.
Tried it exactly like you put and tried it with "item:" in front can't get either to work, but it works just fine when it's in the cast stack on named CA.

Thx
K....
 

Kannkor

Ogre
Tried it exactly like you put and tried it with "item:" in front can't get either to work, but it works just fine when it's in the cast stack on named CA.

Thx
K....
I can confirm 100% it works via MCP. So if it's not working for you, you did not follow his instructions exactly.

If you believe you are, then take screen shots of your MCP button parameters, and your item tab.

Also, do not use "item:" in MCP buttons.
 

Gorrok

Active Member
Works fine for me the MCP buttons.
Have 4 use item buttons created and all i have in there is character name in the first line and Ahrmatal's Ringmail Purse in the 2nd line.

I have found that i sometimes might have to click the button a few times as i am not sure if it queue's the request or stops casting and then uses the item.

Maybe you have to an inventory scan first on each of the 4 characters and then updated once you have added the Ahrmatal's Ringmail Purse.
 

Kannkor

Ogre
Works fine for me the MCP buttons.

I have found that i sometimes might have to click the button a few times as i am not sure if it queue's the request or stops casting and then uses the item.
If they are CastItem buttons, should work fine. Just don't use cancel cast. As soon as latency starts coming in, it's not worth using. I need to completely rewrite the whole cancel thing... but that's down the road.
 

bg50

Active Member
I use this and call it from an MCP button.


Code:
function main()
{
echo *** starting killing chamber ***

if ${Script[${OgreBotScriptName}](exists)}
{
    if !${Me.InCombat}
    return
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G1_Name1" "Ahrmatal's Ringmail Purse"
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G2_Name1" "Ahrmatal's Ringmail Purse"
    wait 300 !${Me.InCombat}

    if !${Me.InCombat}
    return
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G1_Name2" "Ahrmatal's Ringmail Purse"
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G2_Name2" "Ahrmatal's Ringmail Purse"
    wait 300 !${Me.InCombat}

    if !${Me.InCombat}
    return
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G1_Name3" "Ahrmatal's Ringmail Purse"
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G2_Name3" "Ahrmatal's Ringmail Purse"
    wait 300 !${Me.InCombat}

    if !${Me.InCombat}
    return
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G1_Name4" "Ahrmatal's Ringmail Purse"
    relay all OgreBotAtom a_QueueCommand UseItemFromUplink "G2_Name4" "Ahrmatal's Ringmail Purse"
    wait 300 !${Me.InCombat}
}

}

function atexit()
{
    echo *** end killing chamber ***
}
 

bg50

Active Member
save it as an .iss file in your innerspace\scripts folder (ie killingchamber.iss)

button for MCP-
RawCommand
run
killingchamber
 

Kannkor

Ogre
I should have a way for Ogrebot to automatically rotate ringmail purses with next patch. I've done most of the grunt work for it already, just need servers/isxeq2 to be back up to test. I'll post more on it once I have it tested.
 
Top Bottom