• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Update notifications via email for Very Vanilla (Live) updates

Status
Not open for further replies.
Rich (BB code):
Apr 19 2018 by redguides
- MQ2Discord (alynel) added. Allows you to control MQ2 via Discord! See the plugin forum for instructions.

Apr 19 2018 by eqmule
- Fixed a bug in _SPELLBUFF, it had the wrong size and members
  this will fix any problems with casting spells etc.

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180419
 
Rich (BB code):
Apr 23 2018 by eqmule
- Fixed Me.XTAggroCount and Me.XTHaterCount
- Added ${MacroQuest.Version} it will grab whatever version is set in the resource for fileversion for mq2main.dll
- Added ${MacroQuest.InternalName} it will grab whatever internal name is set in resource for the internalname for mq2main.dll

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180423
 
Rich (BB code):
May 07 2018 by eqmule
- ${FindItem} and ${FindBankItem} and ${FindItemCount} now takes item ids as well
  Example: /echo ${FindItemCount[12345]} will find how many items with the id 12345 you have.
- /itemnotify now takes item ids as well.
  Example: /itemnotify #12345 leftmouseup will pick up an item with the id 12345 if one exist.
  NOTE: the hash (#) IS mandatory when using it this way.

Apr 27 2018 by eqmule
- Added .Solvent to the Augslot TLO it returns a SolvenType and if empty just the Name :cred and nagging for weeks: maskoi
  SolventType has 4 members: Name which is a string type, ID as int, Item as itemtype and Count as int.
  Example 1: /echo ${FindItem[Cloth Cap].AugSlot[0].Solvent.Name}
  Output: Class I Augmentation Distiller
  Example 2: /echo ${FindItem[Cloth Cap].AugSlot[0].Solvent.ID}
  Output: 47001
  //if you dont have the solvent in your inventory:
  Example 3: /echo ${FindItem[Cloth Cap].AugSlot[0].Solvent.Item.Name}
  Output: NULL
  Example 4: /echo ${FindItem[Cloth Cap].AugSlot[0].Solvent.Count}
  Output: 0

Apr 24 2018 by eqmule
- Updated for TEST

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180507
 
Rich (BB code):
May 16 2018 by redguides
- KissAssist (ctaylor22, maskoi) updated to 10.2.6! Gmail features, CastMount, and multi rez options. 
  Check the kissassist forum for the full changelog.
- kissassist1004e15 aka eqmuleAssist updated to the latest version.

May 16 2018 by eqmule
- Updated for LIVE
- Updated for TEST

May 13 2018 by SwiftyMUSE
- Added MQ2SoundControl to global build.
- Removed patterns from MQ2Camera, MQ2Moveutils, MQ2SoundControl
- Fixed keybinds, you can no longer bind to the 22 additional keybind names
- Changed ${Me} and ${Buff} TLO's
  Added DiseaseCounters, PoisonCounters, CurseCounters, CorruptionCounters
  Changed Counters to TotalCounters
  Updated all counters to correctly pull the spelldata values

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180516
 
Rich (BB code):
May 17 2018 by redguides
- New plugin! MQ2Clipboard (alynel) copies text, commands or output from MQ2 to your clipboard.
- MQ2Autoloot (plure) Fixed issue with /autoloot sell. It was trying to sell before the merchant was done with the previous sale, 
  which caused it to act all buggy. It wasn't a pretty fix, I really need to figure out when a merchant is done being busy 
  with the previous sale. Fixed a feature with items marked destroy.
If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180517
 
Rich (BB code):
May 24 2018 by redguides
- MQ2EasyFind (eqmule) can now take door ID as a parameter in the ini file for locations
  Example: Fortress Mecanotus is a click door but the loc for it in find is in mid air, kinda where it catapults u so 
  without the door ID easyfind won't know where to go and where to click
  Now I just made it Fortress Mecanotus=door:6 1234 4321 123
- New Macro! ShrinkEm (sl968) Shrinks all members of your group.
- New Utility! EQBCI (jimbob) gives eqbcs a beautiful GUI, check the utilities folder.
- Alternate EQBCS applications added: EQBCS2.exe and EQBCS-eqmule.exe. They each have their pros and cons, none is perfect ...yet.

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180524
 
Rich (BB code):
May 25 2018 by redguides
- MQ2Nav (brianiac, eqmule) fixed a crash with easyfind
- MQ2Discord (alynel) fixed colour characters & item links, unescaped commands from discord
- Scribe.mac (gse7en) Updated scribe.mac to allow macro to be called by another macro (e.g. GoTrain.mac)
- New plugin! (MQ2MYButtons) Add an extra hotbutton bar, because why not?

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180525
 
Rich (BB code):
May 25 2018 by eqmule
- Added .Trigger and .HasSPA to the Spell TLO
  .Trigger[x] returns a SpellType.
  .HasSPA[x] returns true or false
  Usage:
  Sub Main
	/declare i int local
	/if (${Spell[Livio's Malosenia].HasSPA[470]}==TRUE) {
		/for i 1 to ${Spell[Livio's Malosenia].NumEffects}
			/if (${Spell[Livio's Malosenia].Attrib[${i}]}==470) {
				/echo the spell Livio's Malosenia triggers ${Spell[Livio's Malosenia].Trigger[${i}].Name}
			}
		/next i	
	}
  /return

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180526
 
Rich (BB code):
May 29 2018 by redguides
- MQ2AutoGroup & MQ2EasyFind also fixed (eqmule)
- EQBCS.exe (jimbob) Fixed channels issue. Filtered some debug messages for debug mode. Fixed some compile and debug issues

May 29 2018 by eqmule
- Fixed ${InvSlot[tradex].Item} where x is 1-16 for trading with players and 1-4 for NPCs
- Fixed a crash in .IsNamed when Cmd was NULL
- Fixed a potential NULL pointer crash in mq2hud
- Fixed a potential NULL pointer crash in mq2chathook
- Fixed a potential NULL pointer crash in mq2moveutils
- Fixed a rare invalid pointer crash in mq2targetinfo
- Fixed several crashes in MQ2SpellHotkeys
- Fixed a WriteChatf crash in MQ2AutoLoot
- Fixed a WriteChatf crash in MQ2Camera

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180529
 
Rich (BB code):
May 30 2018 by redguides
MQ2EQBC (Redbot) added toggle "nameannounce" to show names on connect/disconnect. Defaults to on. /bccmd set nameannounce off

May 30 2018 by eqmule
- Fixed a bug in .FirstFreeSlot it returned 0 if all slots in a container was empty, but it should return 1 as in slot 1 is the first empty slot
- Added support for the InvSlot TLO to return .Item (as a ItemType) for worldcontainers
  Example: /echo ${InvSlot[enviro].Item.FirstFreeSlot}
  it will echo the first free slot in the currently open worldcontainer (forge,loom etc)

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180530
 
Rich (BB code):
Jun 18 2018 by eqmule
- Added support for emu mq2labels plugin

Jun 16 2018 by eqmule
- Fixed a bug for TEST

Jun 14 2018 by eqmule
- Fixed ITEMINFO for TEST
- Fixed invslot charm

Jun 13 2018 by redguides
- LazyLobbyRez.mac (chatwiththisname) Added soulstone for level 106-110.

Jun 13 2018 by eqmule
- Updated for TEST

Jun 08 2018 by eqmule
- Added ActorDef to the spawn tlo it returns the name of the actor as a string

Jun 07 2018 by eqmule
- Fixed a crash in mq2linkdb
- Fixed multiple potential null ptr crashes in core
- synced some rof2 emu code to latest live

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180618
 
Rich (BB code):
Jun 22 2018 by redguides
- A typo in the last patch caused an issue with uierrors.txt in your EverQuest directory where it would become enormous with errors.
Please run update.exe immediately to fix the problem. 
Restarting EverQuest will clean your uierrors.txt file, no need to manually delete.

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180622
 
Rich (BB code):
Jul 20 2018 by redguides
- *NEW PLUGIN* MQ2WorstHurt (alynel, idea from toots) find the worst hurt member, xtarg or pet. It's incredibly fast, supercharge your heal macros.
- *NEW PLUGIN* MQ2SpawnSort (alynel) find a spawn quickly, searchable by several members (level, PctHP, radius etc.)

Jul 20 2018 by eqmule
- Updated for TEST
- MQ2 contains NO active hacks, you can't warp and you can't "gank" etc.
  Now, I bring this up since there is a thread on the official forum right now about cheat programs.
  They are NOT talking about mq2, but another program which I will NOT link to or promote in any way, in fact we condemn it.

If you have any issues, ideas or comments please discuss here:
https://www.redguides.com/community/threads/49822-Very-Vanilla-Compile-20180720
 
Update notifications via email for Very Vanilla (Live) updates
Status
Not open for further replies.

Users who are viewing this thread

Back
Top
Cart