• 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

Request - TLO - Sub Time Left?

Kasino7

Well-known member
Joined
May 23, 2020
RedCents
244¢
Hello all,

In light of them removing the ability to see in game sub time, I would like a away to kind of manage / see.

Maybe I am off center here but something simple to have my toons PMs me if Sub time is less than a week?

/noparse /bcaa //if ${Me.Substatus}<7 /t ME I have ${Me.Substatus} days left

Basically just want to send a code to all my toons when I log in if any are under a week left, and if so they can just PM me how many days are left.

There a way to compare /sub status and report/echo back? lol :S
 
Hello all,

In light of them removing the ability to see in game sub time, I would like a away to kind of manage / see.

Maybe I am off center here but something simple to have my toons PMs me if Sub time is less than a week?

/noparse /bcaa //if ${Me.Substatus}<7 /t ME I have ${Me.Substatus} days left

Basically just want to send a code to all my toons when I log in if any are under a week left, and if so they can just PM me how many days are left.

There a way to compare /sub status and report/echo back? lol :S
that depends on if the information is still available to us.

if it is you can use mq2 status and do a /bcaa //status sub
 
that depends on if the information is still available to us.

if it is you can use mq2 status and do a /bcaa //status sub

So, assuming it is, that just reports how much time is left.


Is there a way to have that toon only PM/send data to the pilot IF there is 7 days (or less) on the SUB?
 
So, assuming it is, that just reports how much time is left.


Is there a way to have that toon only PM/send data to the pilot IF there is 7 days (or less) on the SUB?
not with mq2status, but you should be able to me.SubscriptionDays
 
Awesome,

so maybe an ingame social you check once a day:

/noparse /bcaa //if (${Me.SubscriptionDays}<5) /t MAINTOON I have ${Me.SubscriptionDays} left - NEED KR

(can change 5 to whatever notice you want)
 
Awesome,

so maybe an ingame social you check once a day:

/noparse /bcaa //if (${Me.SubscriptionDays}<5) /t MAINTOON I have ${Me.SubscriptionDays} left - NEED KR

(can change 5 to whatever notice you want)
Config/zoned.cfg
Code:
/if (${MacroQuest.GameState.Equal[INGAME]} && ${Me.SubscriptionDays}<5) /multiline ; /bc have ${Me.SubscriptionDays} left; /bc have ${Me.SubscriptionDays} left; /beep;
That should get you to click a krono or drive you nuts, whichever comes first. Will go off each time you zone and have less than 5 days.

Thinking about it
Code:
/if (${MacroQuest.GameState.Equal[INGAME]} && ${Me.SubscriptionDays}<5 && ${Me.SubscriptionDays}>=1) /multiline ; /bc have ${Me.SubscriptionDays} left; /bc have ${Me.SubscriptionDays} left; /beep;
Less than 5 days but still subscribed complain, not subscribed anymore then not moan. (I run a few f2p toons)
 
Last edited:
Are we not still just pulling from the same erroneous data source that the UI element was pulling from?
 
Are we not still just pulling from the same erroneous data source that the UI element was pulling from?
yes

they said the information had issues immediately after consuming a krono, which would result in "false" support tickets. after you have zoned or re-received the information and the data "unfucks" itself, it at least appears to be accurate
 
yes

they said the information had issues immediately after consuming a krono, which would result in "false" support tickets. after you have zoned or re-received the information and the data "unfucks" itself, it at least appears to be accurate
gotcha. I didn't realize it corrected itself after zoning.
 
some of the bigbrains might be able to explain it with more authority - I just know sometimes when you consume a krono it acts stupid for a bit, but if you log, or zone, or do other stuff it will correct itself.
 
Request - TLO - Sub Time Left?

Users who are viewing this thread

Back
Top
Cart