WoW:API OfferPetition: Difference between revisions
Jump to navigation
Jump to search
m (Created page with '{{wowapi}} __NOTOC__ Offer the target to sign your petition (only if the petition frame is visible) OfferPetition() == Arguments == :None == Returns == :nil == Macro == Yo…') |
m (Move page script moved page API OfferPetition to API OfferPetition without leaving a redirect) |
(No difference)
|
Latest revision as of 04:46, 15 August 2023
← WoW API < OfferPetition
Offer the target to sign your petition (only if the petition frame is visible)
OfferPetition()
Arguments[edit]
- None
Returns[edit]
- nil
Macro[edit]
You can efficiently ask for peition signatures with a macro like this one:
#showtooltip /use item:5863 /run local s,t={},UnitName("target")for i=1,GetNumPetitionNames()do s[GetPetitionNameInfo(i)]=1 end if GetPetitionInfo()and t and not s[t]then OfferPetition()end