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?
New Race/Class combinations?
-
- Census Taker
- Posts: 54
- Joined: Mon Mar 26, 2007 11:22 am
- Location: Greenville, SC
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!
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!
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.
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()
Not 100%Rollie wrote:That takes care of the new race/class combos.

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.

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};
Code: Select all
ret = {CENSUSPlus_WARRIOR, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_MAGE, CENSUSPlus_WARLOCK, CENSUSPlus_DRUID, CENSUSPlus_DEATHKNIGHT};

Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang
Dwarf Warlocks (:?) are missing too. Line 457 for them:
Old:
New:
Old:
Code: Select all
ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT};
Code: Select all
ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_WARLOCK, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT};
Hopefully, it is now.Rollie wrote:Hrm... my race/class list was obviously not complete =x

These changes, however, are easy for all to do themselves, so no need to rush a new release, before Worgen/Gobbo is included..

Doing census mainly on Draenor; Raluf - Nimsay - Lusmo - Quixx - Sosyan - Garthog - Trubin - Zalistra - Zesmi and Djaang