|
|
| View previous topic :: View next topic |
| Author |
Message |
Thortok2000
Joined: 26 Mar 2007
Posts: 54
Location: Greenville, SC
WR Updates: 1,110,971
Thortok2000 WR Profile
|
Posted: Tue Nov 23, 2010 7:14 am Post subject: New Race/Class combinations? |
|
|
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? |
|
| Back to top |
|
 |
1974ER
Epic Censi
Joined: 07 Nov 2008
Posts: 666
WR Updates: 20,378,495
1974ER WR Profile
|
Posted: Wed Nov 24, 2010 3:00 am Post subject: |
|
|
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! |
|
| Back to top |
|
 |
Rollie
Site Admin

Joined: 28 Nov 2004
Posts: 5364
Location: Austin, TX
WR Updates: 480,131
Rollie WR Profile
|
|
| Back to top |
|
 |
FuxieDK

Joined: 22 May 2008
Posts: 370
Location: Copenhagen, DK
WR Updates: 2,119,371
FuxieDK WR Profile
|
Posted: Sun Nov 28, 2010 10:05 am Post subject: |
|
|
| Rollie wrote: | | That takes care of the new race/class combos. | Not 100%
| Code: | [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: | | ret = {CENSUSPlus_WARRIOR, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_MAGE, CENSUSPlus_DRUID, CENSUSPlus_DEATHKNIGHT}; |
New:
| Code: | | 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 on various servers  |
|
| Back to top |
|
 |
Djambo
Joined: 02 Aug 2005
Posts: 46
Location: Germany
WR Updates: 4,319,263
Djambo WR Profile
|
Posted: Sun Nov 28, 2010 5:47 pm Post subject: |
|
|
Dwarf Warlocks ( ) are missing too. Line 457 for them:
Old: | Code: | | ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT}; |
New: | Code: | | ret = {CENSUSPlus_WARRIOR, CENSUSPlus_PALADIN, CENSUSPlus_HUNTER, CENSUSPlus_ROGUE, CENSUSPlus_MAGE, CENSUSPlus_WARLOCK, CENSUSPlus_PRIEST, CENSUSPlus_SHAMAN, CENSUSPlus_DEATHKNIGHT}; |
|
|
| Back to top |
|
 |
Rollie
Site Admin

Joined: 28 Nov 2004
Posts: 5364
Location: Austin, TX
WR Updates: 480,131
Rollie WR Profile
|
Posted: Sun Nov 28, 2010 9:31 pm Post subject: |
|
|
| Hrm... my race/class list was obviously not complete =x |
|
| Back to top |
|
 |
FuxieDK

Joined: 22 May 2008
Posts: 370
Location: Copenhagen, DK
WR Updates: 2,119,371
FuxieDK WR Profile
|
Posted: Sun Nov 28, 2010 11:18 pm Post subject: |
|
|
| 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..  _________________ Doing census on various servers  |
|
| Back to top |
|
 |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|