Page 1 of 1
New Race/Class combinations?
Posted: Tue Nov 23, 2010 7:14 am
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?
Posted: Wed Nov 24, 2010 3:00 am
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!
Posted: Wed Nov 24, 2010 10:10 am
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.
Posted: Sun Nov 28, 2010 10:05 am
by FuxieDK
Rollie wrote:That takes care of the new race/class combos.
Not 100%
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

Posted: Sun Nov 28, 2010 5:47 pm
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};
Posted: Sun Nov 28, 2010 9:31 pm
by Rollie
Hrm... my race/class list was obviously not complete =x
Posted: Sun Nov 28, 2010 11:18 pm
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..
