I dug through the GMCP documentation and didn't see anything on this. Is there a way to use GMCP to do the same thing as the SETTARGET command? I have a script to send my target kept in the client to Achaea with SETTARGET, but sometimes thing will happen that cause the command to be sent several times, which is problematic to gag correctly. Can anyone help me get around this?
0
Comments
Results of disembowel testing | Knight limb counter | GMCP AB files
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
So my target I want to send is stored in targetList[1], so I tried:
sendGMCP([[IRE.Target.Set "]]..targetList[1]..[["]])
That didn't work, so I tried messing around with just sending it literally
sendGMCP([[IRE.Target.Set ]]..[["bill"]])
sendGMCP(IRE.Target.Set "bill")
sendGMCP([[IRE.Target.Set "bill"]])
sendGMCP("IRE.Target.Set bill")
None of these worked. What am I not understanding here?
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
function achaeaTarget ()
if targetList[1] then
sendGMCP([[IRE.Target.Set "]]..targetList[1]..[["]])
end -- if
end -- achaeaTarget
But I am unsure if that is related
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
Maybe that fixes part of your issue.
And if you get tired of making your own or need inspiration, you can always have a look at http://keneanung.github.io/Bashing/ </shameless plug>
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
sendGMCP("IRE.Target.Set \""..tid.."\"")