New Race/Class combinations?

Found a bug with the CensusPlus UI Mod? Post it here!
Post Reply
Thortok2000
Census Taker
Posts: 54
Joined: Mon Mar 26, 2007 11:22 am
Location: Greenville, SC

New Race/Class combinations?

Post by Thortok2000 »

New race/class combinations come out in today's patch. Is census+ going to crash or not notice them?

New races and level cap increased 12/7 too of course.

On that note, Isle of Conquest is still not supported by Killing Fields and come 12/7 there will not only be more battlegrounds to be unsupported there will also be rated battlegrounds.

I might be able to help with addon coding as I've been practicing LUA a little. But I wouldn't know the first thing about coding the website to be able to take and display the data.

Is this site basically going to give up at this point or what?

1974ER
Epic Censi
Posts: 762
Joined: Fri Nov 07, 2008 3:30 am

Post by 1974ER »

Hello there!

Balgair has been doing a bit of testing on a modified census. According to those tests, the current official build will not crash, but it is likely to miss many, but not all new combination characters. The latter being dependant on whether of not there are 49+ of specific race and level or not online at the time of the census is run.

As a quick example:

47 level 80 blood elves are online, of those, 4 are newly race changed warriors. They will be saved and submitted, but won't be visible on most locations on the site.

But if there are 55 level 80 bloodelves, of which 4 are newly race changed... well, the result is that census might find and save 0, 1, 2, 3 or all 4 of them, depending on whether or not they are included in the initial 49, which are detected before the coding breaks down to class specific level.

Really hoping for Rollie to come up with the official version soon!

User avatar
Rollie
Site Admin
Posts: 4783
Joined: Sun Nov 28, 2004 11:52 am
Location: Austin, TX
Contact:

Post by Rollie »

There is a new version available:

http://www.warcraftrealms.com/censusmod ... -4.3.2.zip

That takes care of the new race/class combos.

As for KillingFields, I would be happy to accept some help updating that if you are interrested. Email me, rollie@warcraftrealms.com and we can discuss that.
phpbb:phpinfo()

User avatar
FuxieDK
Census Taker
Posts: 659
Joined: Thu May 22, 2008 11:36 am
Location: Copenhagen, DK

Post by FuxieDK »

Rollie wrote:That takes care of the new race/class combos.
Not 100% :roll:

Code: Select all

[17:03:17] Census+: Sending /who  r-"Troll" 80-80
[17:03:22] Census+: Waiting to send who request...
[17:03:22] Census+: Sending /who  r-"Troll" 80-80
[17:03:22] Census+: Processing 50 characters.
[17:03:27] Census+: Sending /who  r-"Troll" c-"Death Knight" 80-80
[17:03:28] Census+: Processing 1 characters.
[17:03:33] Census+: Sending /who  r-"Troll" c-"Druid" 80-80
[17:03:33] Census+: Processing 8 characters.
[17:03:38] Census+: Sending /who  r-"Troll" c-"Mage" 80-80
[17:03:38] Census+: Processing 6 characters.
[17:03:43] Census+: Sending /who  r-"Troll" c-"Shaman" 80-80
[17:03:43] Census+: Processing 19 characters.
[17:03:48] Census+: Sending /who  r-"Troll" c-"Priest" 80-80
[17:03:48] Census+: Processing 5 characters.
[17:03:53] Census+: Sending /who  r-"Troll" c-"Rogue" 80-80
[17:03:53] Census+: Processing 1 characters.
[17:03:58] Census+: Sending /who  r-"Troll" c-"Hunter" 80-80
[17:03:58] Census+: Processing 10 characters.
[17:04:03] Census+: Sending /who  r-"Troll" c-"Warrior" 80-80
[17:04:04] Census+: Processing 5 characters.
As far as I can see, you are forgetting to census Troll Warlocks.. :(


With my limited LUA knowledge, I managed to change CensusPlus.lua in Line 453:

Old:

Code: Select all

		ret = {CENSUSPlus_WARRIOR, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_MAGE, CENSUSPlus_DRUID, CENSUSPlus_DEATHKNIGHT};
New:

Code: Select all

		ret = {CENSUSPlus_WARRIOR, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_MAGE, CENSUSPlus_WARLOCK, CENSUSPlus_DRUID, CENSUSPlus_DEATHKNIGHT};
Now it also scans Troll Warlocks :)
Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang

Djambo
Superior Census Taker
Posts: 48
Joined: Tue Aug 02, 2005 12:50 pm
Location: Germany

Post by Djambo »

Dwarf Warlocks (:?) are missing too. Line 457 for them:

Old:

Code: Select all

ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT};
New:

Code: Select all

ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_WARLOCK, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT};

User avatar
Rollie
Site Admin
Posts: 4783
Joined: Sun Nov 28, 2004 11:52 am
Location: Austin, TX
Contact:

Post by Rollie »

Hrm... my race/class list was obviously not complete =x
phpbb:phpinfo()

User avatar
FuxieDK
Census Taker
Posts: 659
Joined: Thu May 22, 2008 11:36 am
Location: Copenhagen, DK

Post by FuxieDK »

Rollie wrote:Hrm... my race/class list was obviously not complete =x
Hopefully, it is now. ;-)

These changes, however, are easy for all to do themselves, so no need to rush a new release, before Worgen/Gobbo is included.. :-D
Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang

Post Reply