Hi, regardless the serv i join (even the uwe), the hive dont seem to record my playtime, i dont really care but some servers kick me because im a "nubs with 0 hours playing"...
AurOn2COOKIES! FREEDOM, AND BISCUITS!AustraliaMembers, Forum Moderators, NS2 Playtester, Forum staffJoin Date: 2012-01-13Member: 140224Posts: 2,130mod
Nobody can see how many hours you've played on hive unless they actually look at the hive page, find your name etc. so i highly doubt you're being kicked because you have 0 hours playing.
Also you need to REGISTER on the hive, for the hive to record your stats.
You can do so here
Send me a private message if you need me to kill someone"help" with anything.
The very existence of flamethrowers proves that sometime, somewhere, someone said to themselves, “You know, I want to set those people over there on fire, but I’m just not close enough to get the job done.” - George Carlin.
AurOn2COOKIES! FREEDOM, AND BISCUITS!AustraliaMembers, Forum Moderators, NS2 Playtester, Forum staffJoin Date: 2012-01-13Member: 140224Posts: 2,130mod
edited February 2014
Aparently the hive is having problems atm, will be fixed Soontm
Send me a private message if you need me to kill someone"help" with anything.
The very existence of flamethrowers proves that sometime, somewhere, someone said to themselves, “You know, I want to set those people over there on fire, but I’m just not close enough to get the job done.” - George Carlin.
GhoulofGSG9Members, Super Administrators, Forum Admins, Forum Moderators, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Reinforced - Supporter, WC 2013 - Supporter, PistachionautsJoin Date: 2013-03-31Member: 184566Posts: 2,838admin
The real issue here is that many official server have custom maps loaded which means the don't report to the hive anymore as only server with no mods or mods like ns2stats report to hive.
IeptBarakatThe most difficult name to speak ingame.Members, Constellation, NS2 Playtester, Squad Five Blue, NS2 Map Tester, Reinforced - Diamond, Reinforced - ShadowJoin Date: 2009-07-10Member: 68107Posts: 2,679Advanced user
An issue I'm having with Hive is that my badge order never updates. In-game it's the order that I obtained the badges as opposed to the order I saved on the website. (Randomize also doesn't work.)
Hi, regardless the serv i join (even the uwe), the hive dont seem to record my playtime, i dont really care but some servers kick me because im a "nubs with 0 hours playing"...
FIxed. If it will ever happen to anyone - contact me.
Nobody can see how many hours you've played on hive unless they actually look at the hive page, find your name etc. so i highly doubt you're being kicked because you have 0 hours playing.
Also you need to REGISTER on the hive, for the hive to record your stats.
You can do so here
This is not true. You do not need to register. You just need to play on whitelisted servers.
An issue I'm having with Hive is that my badge order never updates. In-game it's the order that I obtained the badges as opposed to the order I saved on the website. (Randomize also doesn't work.)
Badges order in-game is fixed, so you can't really change it. You can just select the 3.
This is not true. You do not need to register. You just need to play on whitelisted servers.
Can we dramatically increase the number of whitelisted servers somehow?
I'm whitelisting new servers each Monday Every server that is not using gameplay-changing mods and is sending the data is getting whitelisted after 50 matches.
Capitalisation is the difference between helping your Uncle Jack off a horse and helping your uncle jack off a horse. Knowledge is gained through listening, Understanding is gained through discussion.
GhoulofGSG9Members, Super Administrators, Forum Admins, Forum Moderators, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Reinforced - Supporter, WC 2013 - Supporter, PistachionautsJoin Date: 2013-03-31Member: 184566Posts: 2,838admin
edited March 2014
@Acedude:
Yeah i know allowing all servers is not the best idea, but back then i suggested to use the gamemode to determ if a server should be allowed to send to hive instead the mod number.
And i was not talking about allowing all reports to count to Hive Data as it was in the beginning, i'm fine with the whitelist
With the webend whitelist this should work out ways better than how it is done atm.
I even provided a code to determ the gamemode correctly based on the game_setup.xml:
local Gamemode
--[[
Gets the name of the currently running gamemode.
]]
function GetGamemode()
if Gamemode then return Gamemode end
local GameSetup = io.open( "game_setup.xml", "r" )
if not GameSetup then
Gamemode = "ns2"
return "ns2"
end
local Data = GameSetup:read( "*all" )
GameSetup:close()
local Match = Data:match( "<name>(.+)</name>" )
Gamemode = Match or "ns2"
return Gamemode
end
Ofc this requires that in future new modder use the game_setup.xml correctly for gameplay changing mods
This will require me to manually verify servers anyway.
Yeah but it would take all those modded servers into account which currently are ignored.
But as at least all of the top 20 server are moded this is kinda a current issue of the hive system (just think about custom maps etc.)
If you don't want to spent the time on verifying server yourself you could found a community commitee of trusted people to take over the verifying for you
I think those two changes would improve hive alot and would save yourself some time.
Comments
Also you need to REGISTER on the hive, for the hive to record your stats.
You can do so here
The very existence of flamethrowers proves that sometime, somewhere, someone said to themselves, “You know, I want to set those people over there on fire, but I’m just not close enough to get the job done.” - George Carlin.
Youtube Channel for Sydney Music
The very existence of flamethrowers proves that sometime, somewhere, someone said to themselves, “You know, I want to set those people over there on fire, but I’m just not close enough to get the job done.” - George Carlin.
Youtube Channel for Sydney Music
Alt + 0153
Many of those have strangly maps like NSL_Summit at them and therefor don't report any stats to hive .....
Splitting up armor, for armor level readability and greater customization
This is not true. You do not need to register. You just need to play on whitelisted servers.
Badges order in-game is fixed, so you can't really change it. You can just select the 3.
Can we dramatically increase the number of whitelisted servers somehow?
Allow all servers to report to hive lol, otherwise get more server admins to run [shine] ns2stats beside shine.
Hello! There was a super weird bug. I fixed it few minutes ago, thanks for info!
Twitter: @AndySoulRider Twitch: Twitch.tv/SoulRider YouTube: Youtube.com/user/IamSoulRider/videos
Capitalisation is the difference between helping your Uncle Jack off a horse and helping your uncle jack off a horse.
Knowledge is gained through listening, Understanding is gained through discussion.
Yeah i know allowing all servers is not the best idea, but back then i suggested to use the gamemode to determ if a server should be allowed to send to hive instead the mod number.
And i was not talking about allowing all reports to count to Hive Data as it was in the beginning, i'm fine with the whitelist
With the webend whitelist this should work out ways better than how it is done atm.
I even provided a code to determ the gamemode correctly based on the game_setup.xml:
Ofc this requires that in future new modder use the game_setup.xml correctly for gameplay changing mods
Yeah but it would take all those modded servers into account which currently are ignored.
But as at least all of the top 20 server are moded this is kinda a current issue of the hive system (just think about custom maps etc.)
If you don't want to spent the time on verifying server yourself you could found a community commitee of trusted people to take over the verifying for you
I think those two changes would improve hive alot and would save yourself some time.
There is a report button at hive another reason i would like to have a community commitee because seriously did even one server got reported yet ?