Page 27 of 29

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Tue Jun 08, 2021 6:35 am
by b00n
xpander wrote: Fri May 28, 2021 11:52 am You can use waraddonclient to keep your addons up to date: https://github.com/Idrinth/WARAddonClient/releases

i personally dont think it should be inside the game itself, i personally like using zonepop lite more for example.
newest version of waraddonclient allows to be installed at a different place i think.

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Tue Jun 08, 2021 3:11 pm
by xpander
b00n wrote: Tue Jun 08, 2021 6:35 am
newest version of waraddonclient allows to be installed at a different place i think.

What does that have to do with my post? :D
I was answering to Flowson, who asked if the SoR could be included in the client itself as a core addon.

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Mon Aug 30, 2021 7:32 am
by twistingandturning
It's probably a coincidence, but today my client didn't load and crushed the whole PC, I tried to delete addons, everything but this addon was deleted, I had to chkdsk my HDD, and it showed that State of the realm files were corrupted, after chkdsk /f /r I was able to delete State of the realm folder, and now I am kinda scared to install it again.

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Fri Jan 21, 2022 11:41 am
by Automation
Where can i get the light version from Vinyui?

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Fri Jan 21, 2022 3:16 pm
by Albais
Automation wrote: Fri Jan 21, 2022 11:41 am Where can i get the light version from Vinyui?
I think VinyUI uses ZonepopLite.

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Mon Mar 14, 2022 12:29 pm
by Lion1986
any update? today is very buggy

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Sun Apr 10, 2022 7:30 pm
by Omegus
Currently very buggy during stage 2 of forts where it no longer correctly shows the timer, the number of people in the fort or the number of people in the queue. Stage 1 and 3 seem to work fine.

edit:

Image

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Tue May 24, 2022 9:20 am
by b00n
Here a fixed version of the display bug on keep claims,. (You have to replace the data in<Return of Reckoning>\Interface\AddOns\RoR_SoR\RoR_SoR.lua
https://pastebin.com/cNHppWhe


While this fixes the display bug i don't know what the function i removed was doing. I tested it with some guildies and we had no issues.
The call which breaks the display is the following:
wstring.gsub(ShortGName, L"%l*", L"")

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Tue May 31, 2022 8:57 pm
by b00n
ok i finally found out what is causing this.

whenever a guild has no UpperCase Name the method wstring.gsub(ShortGName, L"%l*", L"") return nil and this is what breaks it.

just take a guild name of "hello world" and you will see the issue.

Re: [ADDON] RoR State of Realm v1.2.4 UPDATED!

Posted: Wed Jun 01, 2022 8:37 am
by tvbrowntown
b00n wrote: Tue May 31, 2022 8:57 pm ok i finally found out what is causing this.

whenever a guild has no UpperCase Name the method wstring.gsub(ShortGName, L"%l*", L"") return nil and this is what breaks it.

just take a guild name of "hello world" and you will see the issue.
guess someone needs to be bothered to make a function that will put in an uppercase letter at the start of each word in a guild name - then store that as ShortGName and call this method.