<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>WoWInterface - AddOns by Miravlix</title>
		<link>http://www.wowinterface.com</link>
		<description>World of Warcraft Addons, Interfaces, Skins, Mods &amp; Community.</description>
		<language>en</language>
		<generator>WoWInterface</generator>
		<ttl>30</ttl>
		<copyright>Copyright 2006, WoWInterface</copyright>
		<image>
			<url>http://cdn.wow.mmoui.com/images/style_mmoi_wowi2/misc/rss.jpg</url>
			<title>WoWInterface</title>
			<link>http://www.wowinterface.com</link>
		</image>
		<webMaster>no-reply@WoWInterface</webMaster>
				<item>
			<title><![CDATA[SeaSpellbook (1.7)]]></title>
			<link>http://www.wowinterface.com/downloads/info4912-1.7.html</link>
			<description>Introduction to the WoW Spellbook cache&lt;br /&gt;&lt;br /&gt;Scanning the spellbook is a slow operation, so when many addons all trigger at the same time to read the spellbook, it makes WoW stutter. &lt;br /&gt;&lt;br /&gt;This library is created to fix that problem, it handles all reads of the spellbook and provides a table (cache) to addons.&lt;br /&gt;&lt;br /&gt;To Do&lt;br /&gt;&lt;br /&gt;The goal for version 2.0 is to create an API for accesing the table.&lt;br /&gt;&lt;br /&gt;Changelog&lt;br /&gt;&lt;br /&gt;1.7&lt;br /&gt;Update for WoW 1.11 patch login error, restructuring and simplifying due to Cosmos way of including the code was made simpler.&lt;br /&gt;&lt;br /&gt;1.4&lt;br /&gt;SeaSpellbook.GetSpellIDByName( name, ] )&lt;br /&gt;name = localized spell name. ie. &quot;Wrath&quot;.&lt;br /&gt;booktype = BOOKTYPE_SPELL or BOOKTYPE_PET (SPELL is default).&lt;br /&gt;rank = Spell Rank number. 0 is default (alias for highest rank).&lt;br /&gt;returns id when everything is kayO&lt;br /&gt;&lt;br /&gt;returns nill if there is anything wrong with the parameters.&lt;br /&gt;&lt;br /&gt;An alias for SeaSpellbook.ID with error checking.&lt;br /&gt;&lt;br /&gt;1.3&lt;br /&gt;Fixed missing notification of spellbook change when training.&lt;br /&gt;&lt;br /&gt;1.2&lt;br /&gt;Some optimization.&lt;br /&gt;&lt;br /&gt;1.1&lt;br /&gt;Cleaned up Embedding/Stand alone design. (New file names and directory structure.)&lt;br /&gt;Fixed a bug that could popup when Sea was also on the system.&lt;br /&gt;&lt;br /&gt;Overview &lt;br /&gt;&lt;br /&gt;The library works in 3 modes. &lt;br /&gt;&lt;br /&gt;As an intergrated part of Sea in Cosmos. (In Cosmos Alpha)&lt;br /&gt;Cosmos Download&lt;br /&gt;&lt;br /&gt;Standalone addon.&lt;br /&gt;Extract the directory in Interface/AddOns&lt;br /&gt;&lt;br /&gt;Embedded into an addon. &lt;br /&gt;Add the following to your addons .toc file. (Changed significantly in 1.1)&lt;br /&gt;## OptionalDeps: Sea, SeaSpellbook&lt;br /&gt;SeaSpellbook\PreSeaSpellbook.lua&lt;br /&gt;SeaSpellbook\main\Sea.wow.spellbook.lua&lt;br /&gt;SeaSpellbook\PostSeaSpellbook.lua&lt;br /&gt;SeaSpellbook\main\Sea.wow.spellbook.xml&lt;br /&gt;&lt;br /&gt;Load on Demand &lt;br /&gt;It's not at this time supported to be embedded in a &quot;Load On Demand&quot; addon and my research into this area doesn't look promising. It's suggested you include it in StandAlone mode, since the library is completely inactive until someone calls RegisterScholar.&lt;br /&gt;&lt;br /&gt;All 3 modes can be on the same system, the Embedder handles cleaning up, so only one version is in memory after the next Garbage Collector run.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to use the library&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SeaSpellbook.RegisterScholar( { &lt;br /&gt;id = &quot;MyId&quot;, &lt;br /&gt;callback = function(bookType) if bookType = BOOKTYPE_SPELL then main spellbook was updated elseif bookType = BOOKTYPE_PET then pet spellbook was updated end,&lt;br /&gt;feedback = {  = true,  = true },&lt;br /&gt;description = &quot;SomeAddons scholar&quot;&lt;br /&gt;} )&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;id - Unique ID for your addon&lt;br /&gt;callback - SeaSpellbook calls this function to tell your addon of changes to it's table.&lt;br /&gt;feedback - What book types do you want information on.&lt;br /&gt;description - Short description, for use in reporting errors.&lt;br /&gt;&lt;br /&gt;After registering SeaSpellbook will now update it's tables.&lt;br /&gt;&lt;br /&gt;SeaSpellbook - The Player Spellbook table&lt;br /&gt;SeaSpellbook - For pet spellbook data.&lt;br /&gt;&lt;br /&gt; = {&lt;br /&gt; = {&lt;br /&gt; = 10,&lt;br /&gt; = &quot;The warrior shouts, increasing the attack power of all party members within 20 yards by 36.  Lasts 2 min.&quot;,&lt;br /&gt; = 21,&lt;br /&gt; = -2,&lt;br /&gt; = {&lt;br /&gt; = &quot;10 Rage&quot;,&lt;br /&gt; = &quot;Battle Shout&quot;,&lt;br /&gt; = &quot;Instant&quot;,&lt;br /&gt; = &quot;The warrior shouts, increasing the attack power of all party members within 20 yards by 36.  Lasts 2 min.&quot;,&lt;br /&gt;},&lt;br /&gt; = &quot;Rank 2&quot;,&lt;br /&gt;},&lt;br /&gt; = {&lt;br /&gt; = 10,&lt;br /&gt; = &quot;The warrior shouts, increasing the attack power of all party members within 20 yards by 36.  Lasts 2 min.&quot;,&lt;br /&gt; = 21,&lt;br /&gt; = -2,&lt;br /&gt; = {&lt;br /&gt; = &quot;10 Rage&quot;,&lt;br /&gt; = &quot;Battle Shout&quot;,&lt;br /&gt; = &quot;Instant&quot;,&lt;br /&gt; = &quot;The warrior shouts, increasing the attack power of all party members within 20 yards by 36.  Lasts 2 min.&quot;,&lt;br /&gt;},&lt;br /&gt; = &quot;Rank 2&quot;,&lt;br /&gt;},&lt;br /&gt; = &quot;Interface\\Icons\\Ability_Warrior_BattleShout&quot;,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; is always a copy of the highest rank availble.&lt;br /&gt;To get  you have to set SeaSpellbook_debug = true&lt;br /&gt;&lt;br /&gt;ID - SpellID for the spell in the spellbook&lt;br /&gt;castTime - positive secs of cast time&lt;br /&gt;-  0 Channeled&lt;br /&gt;- -1 Instant Cast&lt;br /&gt;- -2 Instant&lt;br /&gt;- -3 Next melee / Next Ranged&lt;br /&gt;&lt;br /&gt;manaCost- Mana cost&lt;br /&gt;energyCost- Energy cost&lt;br /&gt;rageCost- Rage cost&lt;br /&gt;minRange- Casting min range to target&lt;br /&gt;maxRange- Casting max range to target&lt;br /&gt;cooldown- cooldown between casts in seconds&lt;br /&gt;&lt;br /&gt;Do not depend on crit, dodge, parry, block. To save CPU, we don't update the table everytime these change. All other values should be up to date always.&lt;br /&gt;crit- x.x% crit chance&lt;br /&gt;dodge- x.x% dodge chance&lt;br /&gt;parry- x.x% parry chance&lt;br /&gt;block- x.x% block chance&lt;br /&gt;&lt;br /&gt;These variables is local dependent.&lt;br /&gt;requires- What is required before the spell can be cast?&lt;br /&gt;tools- Tools required to cast the spell&lt;br /&gt;reagents- Reagents required to cast the spell&lt;br /&gt;description- Description&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Quick search to translate texture name to spell name.&lt;br /&gt;SeaSpellbook.textures&lt;br /&gt;SeaSpellbook.textures&lt;br /&gt;SeaSpellbook = {&lt;br /&gt; = {&lt;br /&gt; = {&lt;br /&gt; = {&lt;br /&gt; = &quot;Blood Fury&quot;,&lt;br /&gt;},&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Backwards compatibility is alpha and omega in a library, so you don't need to check for never versions, a program written for version 1.0 will work with version 100.0 of the library. If you don't embed the library, checking for min version is perhaps a good idea.&lt;br /&gt;&lt;br /&gt;The addon optionally needs Sea.io.print and Sea.io.dprint for it to print error and debug information. You can either get the Sea library while developing or write your own Sea.io.print/Sea.io.dprint functions.&lt;br /&gt;</description>
			<author>Miravlix</author>
			<category domain="http://www.wowinterface.com">Libraries</category>
			<guid>http://www.wowinterface.com/downloads/info4912-1.7.html</guid>
			
			<pubDate>Mon, 14 Aug 2006 09:48:33 +0000</pubDate>
		</item>		<item>
			<title><![CDATA[CRCLib (0.3)]]></title>
			<link>http://www.wowinterface.com/downloads/info4964-0.3.html</link>
			<description>A simple CRC32 library.&lt;br /&gt;&lt;br /&gt;This CRC32 library is based on KHMan's SciTELuaExporters, all credits should go to him for implementing CRC32 in lua. I've taken his code and converted the format into WoW Lua style.&lt;br /&gt;&lt;br /&gt;ChangeLog&lt;br /&gt;0.3 BC 2.0 compatible version.&lt;br /&gt;&lt;br /&gt;0.2 Changed the crc function to always return a decimal value, instead of a binary string, since it's more efficient.&lt;br /&gt;&lt;br /&gt;The library works in two modes.&lt;br /&gt;&lt;br /&gt;Standalone by extracting the archive as an addon.&lt;br /&gt;&lt;br /&gt;Embedded by extracting the .lua file into your own addon and adding the file to toc/xml for loading.&lt;br /&gt;&lt;br /&gt;CRCLib.crc: return the crc of a specified buffer, as a decimal value&lt;br /&gt;crc = CRCLib.crc(data)&lt;br /&gt;</description>
			<author>Miravlix</author>
			<category domain="http://www.wowinterface.com">Libraries</category>
			<guid>http://www.wowinterface.com/downloads/info4964-0.3.html</guid>
			
			<pubDate>Tue, 16 May 2006 05:01:26 +0000</pubDate>
		</item>
	</channel>
</rss>