Poster: Iriel at 7/12/2005 12:28:18 PM PDT Subject: Actual UI Code Changes in 1.6 |
|
Here's a list of the blizzard UI code API changes in 1.6 -- Sorry I didn't do this earlier, the loss of character copy and some really bad scheduling on my part messed up my efforts.
* New API function numFlags = GetNumBattlefieldFlagPositions()
* New API function flagX,flagY,flagToken = GetBattlefieldFlagPosition(index)
* New API function seconds = GetBattlefieldInstanceRunTime()
* Removed API function GetBoundMapPosition
* New API function GetItemInfo (itemID|"itemlink") (Described in the 1.6 updates thread)
* New API function GetPVPRankProgress()
* New API function hk, contribution = GetPVPThisWeekStats()
* New API function HasWandEquipped()
* New API function IsLinuxClient() (Is there something you're not telling us Slouken?)
* New API function IsWindowsClient()
* Removed API function SaveMacros()
* Removed API function TargetUnitsPet("unit")
* New API function TargetLastTarget()
* New API function TargetNearestRaidMember()
* New API function UnitInRaid("unit")
* New API function UnitIsCivilian("unit")
* API Function SelectGossipOption is called with a new second argument (it's text from an edit box, but I dont know what for right now)
* SetItemRef (link,text,button) - The 'text' Argument is new, it used to be (link, button)
* ChatFrame_OnHyperlinkShow (link,text,button)The 'text' argument is new, it used to be (link, button) only.
* Updated PartyMemberFrame_RefreshPetBuffs(id) to take a new 'id' argument.
* Updated PartyMemberFrame_UpdatePet(id) to take a new 'id' argument.
* New UI function TargetFrame_CheckDishonorableKill()
* A bunch of new UI functions concerning RaidPullout*[ post edited by Iriel ]
> Use ## SavedVariables: instead of RegisterForSave()
|
| http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=178847&p=#post178847 |
|
Poster: slouken at 7/12/2005 1:47:31 PM PDT Subject: Re: Actual UI Code Changes in 1.6 |
|
Q u o t e:
* New API function IsLinuxClient() (Is there something you're not telling us Slouken?)
* New API function IsWindowsClient()
IsWindowsClient() returns true if you're running Windows or Wine, and IsLinuxClient() always returns false (but was added for completeness)
|
| http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=178847&p=#post178916 |
Poster: slouken at 7/12/2005 4:55:04 PM PDT Subject: Re: Actual UI Code Changes in 1.6 |
|
Q u o t e:
/script EditMacro(1, "Assist", nil, "/assist "..UnitName("target"), 1)
That's a neat trick, by the way. :)
Just remove the SaveMacros() line and you'll be fine.
|
| http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=178847&p=#post178954 |