• 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

Recent content by Tacc

  1. T

    Problem - EMU (Project Lazarus) AutoLogin Profiles Not Found

    Current EMU Server version. Clean Install of MQNext and Project Lazarus. Edited MQ2autologin.ini EQ Path to point to Project Lazarus directory. As directed by Redguides mq2autologin thread, Added [Servers] Project Lazarus=project lazarus Project Lazarus=[]...
  2. T

    Lua - No Lua access to MQ2 Global Variables

    from any lua script mq.cmd('/declare myVarName int global 99') val = mq.TLO.Macro.Variable('myVarName')() this returns val as nil. However, if you have a macro running then mq.cmd('/declare myVarName int outer 99') val = mq.TLO.Macro.Variable('myVarName')() will return 99 for val.
  3. T

    Lua - No Lua access to MQ2 Global Variables

    Within Lua, mq.TLO.Macro.Variable('macro_variable_name')() exposes an outer MQ2DataVar, but not a global variable. Can the global variables please also be exposed because it forces a macro to be running at all times (and not changed) in order to carry variables to exchange data between peers...
  4. T

    Lua - Group.Members returns nil/NULL if not in a group instead of 0

    Unlike mq.TLO.Raid.Members(), which returns 0 if not in a raid, mq.TLO.Group.Members() returns nil if not in a group (instead of 0), making comparisons more complicated than necessary
  5. T

    Release ImGui, Lua and Font Icons

    where can I find for download the lib.icons file please? for line local ICON = require('lib.icons')
  6. T

    Question - Retrieve MQ2DataVars to Lua?

    cool. thanks!
  7. T

    Question - Retrieve MQ2DataVars to Lua?

    In an MQNext macro, I declare a user-defined variable as: /declare foo string global value Then in a Lua script, how would i retrieve the value of foo? In the MacroScript to Lua 0.2 guide, 5c. Mixing Lua and Macro, I tried value = mq.TLO.Macro.Variable('foo')(), but that always returns nil
Back
Top
Cart