Add files via upload
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,14 @@
|
||||
## Interface: 11200
|
||||
## Title: Relationships Quest And Item Browser
|
||||
## Notes: Click quest and item links in chat, browse and search the full quest and item database.
|
||||
## Author: Relationship
|
||||
## Version: 1.0
|
||||
## SavedVariables: RelationshipsQuestAndItemBrowserDB
|
||||
RelationshipsQuestAndItemBrowser.xml
|
||||
RelationshipsQuestAndItemBrowserData_Init.lua
|
||||
RelationshipsQuestAndItemBrowserData_Quests.lua
|
||||
RelationshipsQuestAndItemBrowserData_Units.lua
|
||||
RelationshipsQuestAndItemBrowserData_Objects.lua
|
||||
RelationshipsQuestAndItemBrowserData_Items.lua
|
||||
RelationshipsQuestAndItemBrowserData_Zones.lua
|
||||
RelationshipsQuestAndItemBrowser.lua
|
||||
@@ -0,0 +1,28 @@
|
||||
<Ui xmlns="http://www.blizzard.com/wow/ui/">
|
||||
<Frame name="RelationshipsQuestAndItemBrowserFrame" toplevel="true" movable="true" enableMouse="true" parent="UIParent" hidden="true" frameStrata="HIGH">
|
||||
<Size><AbsDimension x="720" y="620"/></Size>
|
||||
<Anchors><Anchor point="CENTER"/></Anchors>
|
||||
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
|
||||
<BackgroundInsets><AbsInset left="11" right="12" top="12" bottom="11"/></BackgroundInsets>
|
||||
<TileSize><AbsValue val="32"/></TileSize>
|
||||
<EdgeSize><AbsValue val="32"/></EdgeSize>
|
||||
</Backdrop>
|
||||
<Layers>
|
||||
<Layer level="ARTWORK">
|
||||
<FontString name="RelationshipsQuestAndItemBrowserFrameTitle" inherits="QuestTitleFont" text="Relationships Quest And Item Browser">
|
||||
<Anchors><Anchor point="TOP" relativeTo="RelationshipsQuestAndItemBrowserFrame" relativePoint="TOP"><Offset><AbsDimension x="0" y="-14"/></Offset></Anchor></Anchors>
|
||||
</FontString>
|
||||
</Layer>
|
||||
</Layers>
|
||||
<Frames>
|
||||
<Button name="RelationshipsQuestAndItemBrowserFrameCloseButton" inherits="UIPanelCloseButton">
|
||||
<Anchors><Anchor point="TOPRIGHT" relativeTo="RelationshipsQuestAndItemBrowserFrame" relativePoint="TOPRIGHT"><Offset><AbsDimension x="-6" y="-6"/></Offset></Anchor></Anchors>
|
||||
</Button>
|
||||
</Frames>
|
||||
<Scripts>
|
||||
<OnMouseDown>if arg1 == "LeftButton" then this:StartMoving() end</OnMouseDown>
|
||||
<OnMouseUp>if arg1 == "LeftButton" then this:StopMovingOrSizing() end</OnMouseUp>
|
||||
<OnHide>this:StopMovingOrSizing()</OnHide>
|
||||
</Scripts>
|
||||
</Frame>
|
||||
</Ui>
|
||||
@@ -0,0 +1,7 @@
|
||||
-- Database root for bundled vanilla/Turtle quest data.
|
||||
RelationshipsQuestAndItemBrowserData = RelationshipsQuestAndItemBrowserData or {}
|
||||
RelationshipsQuestAndItemBrowserData["quests"] = RelationshipsQuestAndItemBrowserData["quests"] or {}
|
||||
RelationshipsQuestAndItemBrowserData["units"] = RelationshipsQuestAndItemBrowserData["units"] or {}
|
||||
RelationshipsQuestAndItemBrowserData["objects"] = RelationshipsQuestAndItemBrowserData["objects"] or {}
|
||||
RelationshipsQuestAndItemBrowserData["items"] = RelationshipsQuestAndItemBrowserData["items"] or {}
|
||||
RelationshipsQuestAndItemBrowserData["zones"] = RelationshipsQuestAndItemBrowserData["zones"] or {}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user