Code: Select all
19 Apr 2006 by dkaa, rswiders
- updated for 4/19 patch
- added spawn.IsNamed
- added personal tribute and radiant/ebon crystals to CHARINFOModerator: MacroQuest Developers

Code: Select all
19 Apr 2006 by dkaa, rswiders
- updated for 4/19 patch
- added spawn.IsNamed
- added personal tribute and radiant/ebon crystals to CHARINFO
Code: Select all
20 Apr 2006 by rswiders
- fix for isxeq compile issue


Code: Select all
30 Apr 2006 by rswiders
- added Me.TributeTimer, Me.RadiantCrystals, Me.EbonCrystals
- added Me.Shrouded, UseSkill, LoH/HT Ready (ieatacid)

Code: Select all
10 June 2006 by rswiders
- added Aura to spawn searches and mapfilter
- added spellradius to map for a second radius circle on the map


Code: Select all
28 June 2006 by rswiders, ieatacid
- fix for 6/28 patch
- fix for gbInZone on initial load
27 June 2006 by ieatacid
- added bool Me.AutoFire
Code: Select all
5 July 2006 by ieatacid
- added Me.Language (ex. ${Me.Language[1]} returns "Common Tongue"; ${Me.Language[Common Tongue]} returns 1)
- fixed zoned.cfg to load properly after zoning, also .cfg files that use zone short names
29 June 2006 by ieatacid
- added int MacroQuest.ChatChannels (returns number of channels currently joined)
- added MacroQuest.ChatChannel (ex. ${MacroQuest.ChatChannel[MQChat]} returns true if the channel "MQChat" is joined (bool); ${MacroQuest.ChatChannel[1]} returns the name of chat channel 1 (string))Code: Select all
18 July 2006 by Amadeus
- fixed for today's patch
17 July 2006 by ieatacid
- Added spell Me.Aura (this applies to your self-aura that is shown in the aura window)
13 July 2006 by ieatacid
- Added to item type: Evolving which has the following members
ExpPct
ExpOn
Level
MaxLevel
Example: ${FindItem[some evolving item].Evolving.ExpPct}
- Some UI struct fixes
- /windowstate now works without screwing up the UI state
8 July 2006 by Amadeus
- Updated ISXEQ to compile a bit better with Visual Studio 2005
- Added ISXEQ project/solution file(s) for Visual Studio 2005.
1. Double-click on "MQ2Auth.exe" (duh)
2. Open Visual Studio 2005
3. Click on File->Open->Project/Solution ..and select "ISXEQ-VS2005"
4. Build All.
5. The DLL files will be built in a directory in your primary MQ folder
called "ISXEQ Release Files". Simply move all of the DLL files from
that directory to your /InnerSpace/Extensions directory.
** You will get a few warnings; however, if your library/headers are set
up correctly and the ISXDK is installed properly, you should be able
to compile out-of-the-box.
- Updated the VS2003 solution file ("ISXEQ") to include only ISXEQ projects
and disable compilation of ISXEQLegacy (since it is currently broken).
- Please note that these VS2005 project files are only for ISXEQ. If you
still use MQ2, you can ignore this.
Code: Select all
5 August 2006 by Amadeus
* Added a new member to the 'string' datatype.
1. Replace[ToReplace,ReplaceWith]
a. This member will return a string replacing every instance of
'ToReplace' with 'ReplaceWith'. It will work for both strings
and individual characters. IT IS CASE SENSITIVE.
~ Example: echo ${Me.Name.Replace["Amadeus","Maestro"]}
echo ${Me.Name.Replace[",","."]}
* Added a custom 'label' that you can put in your macros -- ":OnExit".
Anything included after that label will be called whenever an /endmacro
command is issued. To use this feature, the label must be at the end
of your 'Sub Main' function and end with a /return. Please note that
this is NOT required of macros, so no macros will have to be altered
unless you wish to take advantage of this feature. (See my posting
on the messageboards for an example of how to use this.)
