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

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


Post New Thread Reply   
 
Thread Tools Display Modes
Sora
New Member
Join Date: Aug 2015
Old 08-05-2015 , 06:13   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1751

mazdarx8, Check the error log file it will tell you what the issue is.

Muukis,
I've found some issues. If you visit maps.php?type=coop you will notice that some of the map names are to long and cause the infomation to stretch outside of the box they are designated to fit in.. Also head to maps.php?type=realism it will say "ArrayArrayArrayArrayArray" instead of generating the map list. Another issue is that the "Footer" that displays on each page overlaps content and is not placed at the end of the page (such as awards page, and map listings)

The "Let infected into the saferoom" is bugged on the map c4m3_sugarmill_b (ending saferoom) whoever last shut the door if infected mob is rushing it, will spam "You have lost 5 points for letting infected in the saferoom"

One final thing is that the Top10 on the sidebar cannot display long names.. It will force the name to be under the number, not much of an issue just something I noticed and being picky about hehe

Example:
1. Sora
2.
Somereallyreallylongnamehere
Sora is offline
Parallax83
Junior Member
Join Date: Jun 2015
Old 08-18-2015 , 04:11   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1752

Hi guys.

how to fix this?

l4d_stats_web2

PHP Code:
WarningCannot modify header information headers already sent by (output started at D:\OpenServer\domains\mysuites.net\web\lang\language.en.php:1in D:\OpenServer\domains\mysuites.net\web\install\includes\core\wizard.php on line 797 

Last edited by Parallax83; 08-18-2015 at 06:02.
Parallax83 is offline
fituserr
Junior Member
Join Date: Dec 2013
Old 08-29-2015 , 04:50   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1753

pls fix
HTML Code:
Warning: Cannot modify header information - headers already sent by (output started at /home/webask/data/www/domain.net/stats/lang/language.en.php:1) in /home/webask/data/www/domain.net/stats/install/includes/core/wizard.php on line 797

Last edited by fituserr; 08-29-2015 at 04:53.
fituserr is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 08-30-2015 , 13:41   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1754

I'll try to make time to fix some of the problems. I'm sorry for keeping you waiting.
__________________
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
manhkst
Member
Join Date: May 2015
Location: Vietnammese
Old 10-09-2015 , 10:50   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1755

When I make my host has got this error message , what can I do denied for user Access ' manhkst_man'@'183.80.115.156 ' to database ' manhkst_l4d2 '
I use mysql online and remote access functionality
manhkst is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 10-10-2015 , 10:28   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1756

Quote:
Originally Posted by manhkst View Post
When I make my host has got this error message , what can I do denied for user Access ' manhkst_man'@'183.80.115.156 ' to database ' manhkst_l4d2 '
I use mysql online and remote access functionality
You must grant the user 'manhkst_man' sufficient privileges to the tables created. Or grant access to the 'manhkst_l4d2' database. Google is your friend!
Sufficient equals to at least select, update, insert and delete. Granting all privileges does the trick easily.
__________________
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.

Last edited by muukis; 10-13-2015 at 02:56.
muukis is offline
petraunas
Junior Member
Join Date: Mar 2015
Old 10-12-2015 , 15:13   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1757

Tried that and it worked perfectly! Thanks Muukis.
__________________
Looking for plugins.
petraunas is offline
Dominatez
Senior Member
Join Date: Oct 2009
Location: Birmingham, UK
Old 10-23-2015 , 18:26   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1758

Hi Muukis.

I am seeing this error now. It has appeared now after the L4D1 update.

[SM] Plugin encountered error 14: Divide by zero
[SM] Displaying call stack trace for plugin "l4d_stats.smx":
[SM] [0] Line 3619, l4d_stats.sp::event_TankKilled()
Error log file session closed.

Any ideas ?
Dominatez is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 10-24-2015 , 14:08   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1759

Quote:
Originally Posted by Dominatez View Post
Hi Muukis.

I am seeing this error now. It has appeared now after the L4D1 update.

[SM] Plugin encountered error 14: Divide by zero
[SM] Displaying call stack trace for plugin "l4d_stats.smx":
[SM] [0] Line 3619, l4d_stats.sp::event_TankKilled()
Error log file session closed.

Any ideas ?
Thanks for the logs. I'll try fixing it soon, but you'll have to test it for me?
__________________
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
muukis
Veteran Member
Join Date: Apr 2009
Old 10-24-2015 , 14:23   Re: [L4D & L4D2] Custom Player Stats v1.4B121
Reply With Quote #1760

Looking at the code, it seems the core functionality has changed and probably requires a SM update before this can be fixed, but I think once SM is updated the plugin works as before.
PHP Code:
    new Players 0;

    new 
maxplayers GetMaxClients();
    for (new 
1<= maxplayersi++)
    {
        if (
IsClientConnected(i) && IsClientInGame(i) && !IsClientBot(i))
        {
            
Players++;

            if (!
IsPlayerAlive(i))
            {
                
Deaths++;
            }
        }
    }

    
// This was proposed by AlliedModders users el_psycho and PatriotGames (Thanks!)
LINE 3619:     new Score = (BaseScore * ((Players Deaths) / Players)) / Players
__________________
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.

Last edited by muukis; 10-24-2015 at 14:26.
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 13:18.


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