Look at the bright side. At least they managed to leave out Chaos Vortex.
Posts by Utu
-
-
Affected Class/Skill/Quest/Festival/Other: All
Description: Experience Potion (7 Days) buff cannot be cancelled. After being used it stays on for 7 days no matter what you do. It was distributed as a gift (or one of possible rewards) some time ago but there was no warning about this feature. Now i cannot use +100% exp potion during whole exp event. Actually this applies to a number of other tp and exp potions.
Please make it possible to override existing buff, at least with a better version.
Server: Vidar, probably all
Version: Current
-
-
Making cooldowns more friendly.
The remaining time for skills or bag items is displayed like "1m" which means that the cooldown is somewhere between 1 and 2 minutes. There's a way to display more information e.g. adding seconds for cases like this. You just need to override function CooldownFrame_SetTime. If you don't know how to make custom functions you can start here https://runesofmagic.gamepedia.com/Addon_Tutorial
My implementation looks like this
Code- function CooldownFrame_SetTime(this, duration, remaining)
- if ( duration > 0 or remaining > 0 ) then
- local cooldownText = getglobal(this:GetName().."Text");
- local cooldownTexture = getglobal(this:GetName().."Texture");
- local m = math.floor(remaining / 60)
- local s = remaining - m * 60
- local h = math.floor(m / 60)
- local text = ""
- if ( h > 0 ) then
- m = m % 60
- text = string.format("%d:%02d", h, m);
- elseif ( m > 0 ) then
- text = string.format("%d:%02d", m, s);
- elseif ( s > 1 ) then
- text = string.format("%d", s);
- else
- text = string.format("%.1f", s)
- end
- cooldownText:SetText(text)
- cooldownTexture:SetCooldown(duration, remaining);
- this.starting = 1;
- this.duration = duration;
- this.remaining = remaining;
- this:Show();
- else
- this:Hide();
- end
- end
Durations over 1 hour are displayed as HH:MM, durations form 1 min to 1 hour are displayed as MM:SS, less that 1 min are displayed as SS and the last second as 0.ms.
You can easily make your own version. For example, if you don't like flashing numbers you can rempve the "else text = string.format("%.1f", s)" part.
-
UltimateMailMod mistakenly treats "Gold Hammer of the Boundless Dune" and "Rare Gold Hammer of the Boundless Dune" as bound and cannot send them.
There is a quick-and-dirty fix for this. Edit UltimateMailMod\Locales\EN.lua and change the value of UMM_TOOLTIP_BOUND from "Bound" to "Bound%s".
-
-
"Equipment swap expansion ticket" was giftable before but isn't now.
Please fix this.
-
Titles from the first list require certain level of your main class but they have no limitation regarding your highest class. In other words, you can obtain all of them later.
"Whitefur Savior" is given for killing one of last two bosses (idr which one), not just b2.
The second list seems to contain mostly "usual" titles which can be obtained from festivals, minigames, instances. For example "Lets Rock! Kaz!" and "Kaz Madness" come from a pumpkin festival event.
-
Check "server save" at the bottom of the settings dialog.
But crashes can mess it up again.
-
Server: Vidar
Logging in takes much longer than usual. "Loading server data" lasts for minutes.
Right now cannot connect at all.
Upd. Ah, special maintenance is on. Let's hope it will get addressed.
-
Complete some public quests in the zone. Justice shop opens if you earned public even points in the current round.
If you have many eoj (idr how many but 9000+ works) then prices may be lowered. Best eoj farm is doing Musical Festival tasks.
If you 6000 public event points were obtained in the zone then at least the top scorer can get better prices.
-
Just start playing, low levels are quite forgiving and you can find out whether you like the game.
Joining a guild is indeed the best advice if you are choose to keep on.
And you can start exploring topics mentioned here http://anakrasra.eu/guides/tip…inners-in-runes-of-magic/
-
Resurrection spot near New Pantheon isn't safe. Nearby mobs are permanently fighting with the camp NPCs and use aoe damage.
PS. A GM with certain reputation asked us to give more examples. Let's do this so he can safely close this topic too with "it has been tested" comment.
-
Read the announcements. The exchange NPCs were planned to be there till the maintenance on 20th and therefore were removed yesterday. They are not related to festivals and can appear whenever GMs are kind enough to turn them on.
-
I don't know what you mean by tier for Zodiacs. It was obtained when i collected 12 adult Zodiac pets so I describe it as "adult" in the first message
-
Affected Class/Skill/Quest/Festival/Other: All
Description: I have a legendary Zodiac pet (id 241511) and adult secret Zodiac dragon (id 241525) both with exp buffs selected. When I summon any of them I get a 40% exp buff. But when I summon another the pet appears but not the buff.
Upd. If the buff disappears then the buff from another pet can be obtained later this day. So it's really about compatibility.
Sever: probably all
Version: current
-
Brilliant. Just brilliant. All we need is id. And nothing happens when we get it.
If there is anything that can help you establish fairness of pulls please let me know how.
-
Exchange NPCs are missing on Vidar server
-
According to rom-welten the item is is 236293. I'm specifically interested whether stat 514559 really drops 1/4 of the time.
PS. I reserve the right for "i did say so" comment later.
-
Please don't take the following as a request which has been the whole purpose of this topic.
Let's say i had bad luck with stats in "Devourer Gloves of the Dawn" and want to be sure it was only bad luck, not intentionally skewed distribution. Game team can make tests and give their verdict. However Korrin wasn't enthusiastic about testing all important items and I can imagine him saying "we did enough, come back next decade after you pull 1000 PoM items and don't like something". This is not a joke btw but a reasonable assumption about "we won't redo all tests" statement.
So I have a dilemma. Either ask to test a minor item or ignore it and ask to test something vital many players need.
If these are the only two options then I would prefer the latter. But if Korin meant that all "vital" distributions have been tested then I can safely go back to the original issue.
Please help me here. If testing the original EOJ item in question doesn't stop the whole thing right there then we can go there.