Raised This Month: $51 Target: $400
 12% 

[L4D & L4D2] Custom Player Stats v1.4B121


Post New Thread Reply   
 
Thread Tools Display Modes
eric0279
AlliedModders Donor
Join Date: May 2007
Old 11-09-2012 , 20:05   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1571

Quote:
StatsPrintToChat(client, "You've \x04%s \x01rank for \x04%i position%s\x01! \x05(Rank: %i)", Label, RankChange, (RankChange > 1 ? "s" : ""), RankChangeLastRank[client]);
It's not correct in game....

Actual > 1er me and in game :
Code:
You've GAINED rank for 1 position! (Rank: 0)
when the player is first in the standings, there is a problem, it indicates the ranking 0 then it is first, it is not very fair...

Last edited by eric0279; 11-10-2012 at 00:19.
eric0279 is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 11-12-2012 , 03:02   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1572

Quote:
Originally Posted by eric0279 View Post
It's not correct in game....
I'm not sure if understand you. Gaining zero ranks should not pop up any messages, so there's a bug if it works as you've described. Thanks for reporting!
__________________
Monster Hunter

Though certainly not superhuman, the man's prowess inspires an excess of whispered rumors. But those rumors remain in the realm of speculation.
muukis is offline
gajo0650
Member
Join Date: Apr 2012
Old 11-15-2012 , 05:51   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1573

Hi,muukis.
What's the problem?
Player name is blank.

My site has been translated into Korean.
Can you fix it?
Attached Thumbnails
Click image for larger version

Name:	Cap 2012-11-15 19-47-10-634.jpg
Views:	539
Size:	10.9 KB
ID:	112179  

Last edited by gajo0650; 11-15-2012 at 07:34.
gajo0650 is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 11-16-2012 , 01:32   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1574

Quote:
Originally Posted by gajo0650 View Post
Hi,muukis.
What's the problem?
Player name is blank.

My site has been translated into Korean.
Can you fix it?
I am aware of the problem which creates empty usernames to the WebUI. However, I don't know how to fix it at the moment. This issue has been in discussions at this thread from time to time. I have tried fixing it but it seems that every time I get one thing fixed (a username like yours is displayed properly) another breaks down. It feels like a problem between MySQL and PHP, because you can read the usernames properly from the game UI (try getting !top10 from in-game). My knowledge on PHP is very limited and all my efforts to fix this have failed. Right now I don't have the time to look into this, I am sorry to say. If you or anyone else is able to find the problem, please tell me and I'll put it on the first post and will give you credit for it.
__________________
Monster Hunter

Though certainly not superhuman, the man's prowess inspires an excess of whispered rumors. But those rumors remain in the realm of speculation.
muukis is offline
noctua
Member
Join Date: Dec 2010
Old 11-30-2012 , 10:26   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1575

Hi muukis,
im running 3 servers, 1 & 2 are for everyone, 3 should be only for experts with minimum 250k points.
Its possible to add such a feature or write a seperate plugin for this?

If someone with less points connects, he should be kicked with a message like: you need at least 250.000 points to play on this server.

best regards
noctua is offline
Fora
Member
Join Date: Aug 2012
Old 12-02-2012 , 23:12   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1576

Is anybody have a problem with crash server after patch 2.1.1.7?

Last edited by Fora; 12-02-2012 at 23:12.
Fora is offline
skull_
Junior Member
Join Date: Mar 2012
Old 12-04-2012 , 10:28   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1577

Fora, yes. You need to update server's gamedata. Use the latest stable snapshot.
This plugin also uses gamedata file, which i think needs to be updated, because the plugin doesn't function right.
skull_ is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 12-05-2012 , 07:45   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1578

Quote:
Originally Posted by noctua View Post
Hi muukis,
im running 3 servers, 1 & 2 are for everyone, 3 should be only for experts with minimum 250k points.
Its possible to add such a feature or write a seperate plugin for this?

If someone with less points connects, he should be kicked with a message like: you need at least 250.000 points to play on this server.

best regards
You should write (or ask someone else to write) a separate plugin for that. It shouldn't be too difficult to code.
__________________
Monster Hunter

Though certainly not superhuman, the man's prowess inspires an excess of whispered rumors. But those rumors remain in the realm of speculation.
muukis is offline
Fora
Member
Join Date: Aug 2012
Old 12-14-2012 , 05:48   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1579

Is it possible to combine 2 players or change Steam ID? (in case of buying licence version of game)
Fora is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 12-15-2012 , 18:22   Re: [L4D & L4D2] Custom Player Stats v1.4B117
Reply With Quote #1580

Quote:
Originally Posted by Fora View Post
Is it possible to combine 2 players or change Steam ID? (in case of buying licence version of game)
Yes, but you need to do some queries to your DB: You need to transfer all the data from another player to the other. It is quite simple query string, but right now I cannot access the computer with my DB, so I cannot be sure what the query should be like. If you are not abel to do it on your own and no one here helps you first, I'll try to write the query for you next time I remember this and I'm at the spot I can access my DB.

It goes something like this:
UPDATE players SET (in here you will write all the fields in the players table like so: BOOMERS_KILLED = BOOMERS_KILLED + t2.BOOMERS_KILLED, HUNTERS_KILLED = HUNTERS_KILLED + t2.HUNTERS_KILLED, ...) FROM players AS t2 WHERE steam_id = 123 AND t2.steam_id = 456
In this case the steam id 123 is the old one and the steam id 456 is the combined one. This is pretty much pseudosyntax, so you'll need to dig up the correct one from Google or get help otherwise, if you are not familiar to the syntax yourself.
__________________
Monster Hunter

Though certainly not superhuman, the man's prowess inspires an excess of whispered rumors. But those rumors remain in the realm of speculation.
muukis is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:20.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode