Raised This Month: $ Target: $400
 0% 

"bad load" for statsx and related plugins (Installed CS addon)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Serival
New Member
Join Date: Jun 2007
Old 06-10-2007 , 17:44   "bad load" for statsx and related plugins (Installed CS addon)
Reply With Quote #1

I am having a difficult time getting statsx to work. I have installed the CS add-on that seems to be the problem for most people . . . no luck.

The three plugins used for stats are the only three that don't appear to be loading correctly, I believe I have installed everything correctly and have all the necessary modules, etc.

Outputs read as such.

] meta list
Code:
Currently running plugins:
 [  1] AMX Mod X, v1.71, Apr  2 2006, by AMX Mod X Dev Team, see http://www.amxmodx.org
1 plugins
Unknown command:
] amx_plugins
Code:
Currently loaded plugins:
name               version  author            file             status   
Admin Base         1.71     AMXX Dev Team     admin.amxx       running  
Admin Commands     1.71     AMXX Dev Team     admincmd.amxx    running  
Admin Help         1.71     AMXX Dev Team     adminhelp.amxx   running  
Slots Reservation  1.71     AMXX Dev Team     adminslots.amxx  running  
Multi-Lingual Sys  1.71     AMXX Dev Team     multilingual.am  running  
Menus Front-End    1.71     AMXX Dev Team     menufront.amxx   running  
Commands Menu      1.71     AMXX Dev Team     cmdmenu.amxx     running  
Players Menu       1.71     AMXX Dev Team     plmenu.amxx      running  
Maps Menu          1.71     AMXX Dev Team     mapsmenu.amxx    running  
Admin Chat         1.71     AMXX Dev Team     adminchat.amxx   running  
Anti Flood         1.71     AMXX Dev Team     antiflood.amxx   running  
Scrolling Message  1.71     AMXX Dev Team     scrollmsg.amxx   running  
Info. Messages     1.71     AMXX Dev Team     imessage.amxx    running  
Admin Votes        1.71     AMXX Dev Team     adminvote.amxx   running  
NextMap            1.71     AMXX Dev Team     nextmap.amxx     running  
Nextmap Chooser    1.71     AMXX Dev Team     mapchooser.amxx  running  
TimeLeft           1.71     AMXX Dev Team     timeleft.amxx    running  
Pause Plugins      1.71     AMXX Dev Team     pausecfg.amxx    running  
Stats Configurati  1.71     AMXX Dev Team     statscfg.amxx    running  
unknown            unknown  unknown           statsx.amxx      bad load 
unknown            unknown  unknown           miscstats.amxx   bad load 
unknown            unknown  unknown           stats_logging.a  bad load
] amx_modules (Lines indeed read blank in console! I find this somewhat alarming!)
Code:
name                    version  author              
                                                     
                                                     
                                                     
3 modules
I've RTFM, Googled, and searched these forums to no avail.

Lastly, my amx_config.cfg which is executed by the server.cfg.

Code:
// c4timer.amx

// amx_showc4timer <0|1|3> - Off | T's only | CT's only | ALL (Default: 3)
// amx_showc4flash <0|1> - Sprite flashing (Default: 0)
// amx_showc4sprite <0|1> - Choose from 2 sprites (Default: 1)
amx_showc4sprite 0
// amx_showc4msg <0|1> - Shows a hud message about the timer (Default: 0)

amx_statscfgmenu

gg_enabled 0

// Statsx Options
// Duration of HUD-statistics. (Default 12 sec.)
//     amx_statsx_duration < time in seconds >
// 
//   HUD-statistics display limit relative round freeze end.
//   Negative time will clear the HUD-statstics before the
//   round freeze time has ended. (Default -2 sec.)
//     amx_statsx_freeze < time in seconds >
// 
//   When activating this plugin the Stats Settings Plugin,
//   "statscfg", should also be activated. 
//   Activating the Stats Settings Plugin allows configuration
//   to be done either with client GUI menus or in server
//   configuration files.
//     amx_statscfg < "on" or "off" > < option >
// 
//     StatsX options:
//       "KillerChat"     - show killer stats in the chat section
//       "ShowAttackers"  - show attackers on HUD (deactivated)
//       "ShowVictims"    - show victims on HUD (deactivated)
//       "ShowKiller"     - show killer on HUD
//       "ShowTeamScore"  - shows team score at round end (deactivated)
//       "ShowTotalStats" - shows round total stats (deactivated)
//       "ShowBestScore"  - shows rounds best scored player
//       "ShowMostDisruptive" - shows rounds most disruptive player
//                        
//       "EndPlayer"      - display player stats MOTD at map end
//       "EndTop15"       - display top15 MOTD at the end of map
//       "SayHP"          - allow for say /hp
//       "SayStatsMe"     - allow for say /statsme
//       "SayRankStats"   - allow for say /rankstats
//       "SayMe"          - allow for say /me
//       "SayRank"        - allow for say /rank
//       "SayReport"      - allow for say /report
//       "SayScore"       - allow for say /score
//       "SayTop15"       - allow for say /top15
//       "SayStatsAll"    - allow for say /stats
//       "SayMiscFunc"    - allow for say /timeleft, /thetime, 
//                          /currentmap, /ff
//       "ShowStats"      - client HUD-stats switched on by default
//       "ShowDistHS"     - show distance and HS in attackers and
//                          victims HUD lists
//       "SpecRankInfo"   - displays rank info when spectating
// 
//   Stats plugin options (flags) to define what to display to
//   the clients. 
//   NOTE! To deactivate all options set flags to " " 
//   (one quoted space).
//     amx_statsx_mode < flags >
//         "a" - delay (0.01s) HUD stats on HUD reset

amx_statscfg "on" "ShowAttackers"
amx_statscfg "on" "ShowVictims"
amx_statscfg "on" "ShowBestScore"
amx_statscfg "on" "SayHP"
amx_statscfg "on" "SayStatsMe"
amx_statscfg "on" "SayRankStats"
amx_statscfg "on" "SayMe"
amx_statscfg "on" "SayRank"
amx_statscfg "on" "SayReport"
amx_statscfg "on" "SayScore"
amx_statscfg "on" "SayTop15"
amx_statscfg "on" "SayStatsAll"
amx_statscfg "on" "SayMiscFunc"
amx_statscfg "on" "ShowDistHS"
amx_statscfg "on" "SpecRankInfo"
amx_statscfg "on" "ShowStats"
amx_statscfg "off" "KillerChat"
amx_statscfg "off" "ShowKiller"
amx_statscfg "off" "ShowMostDisruptive"
amx_statscfg "off" "EndPlayer"
amx_statscfg "off" "EndTop15"



say "AMX cvars executed."
say "All configurations executed."
Any help appreciated. I truly hope I didn't miss something obvious.
Serival is offline
sawce
The null pointer exception error and virtual machine bug
Join Date: Oct 2004
Old 06-10-2007 , 18:26   Re: "bad load" for statsx and related plugins (Installed CS addon)
Reply With Quote #2

Can you try upgrading to amxmodx 1.76d? It is available on the main page.
__________________
fyren sucks
sawce is offline
Serival
New Member
Join Date: Jun 2007
Old 06-10-2007 , 18:42   Re: "bad load" for statsx and related plugins (Installed CS addon)
Reply With Quote #3

That worked. The problem was solved by using the most recent version of AMXmodX.
Serival 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 12:55.


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