Raised This Month: $32 Target: $400
 8% 

SourceMod 1.2.1 Released


Post New Thread Closed Thread   
 
Thread Tools Display Modes
BAILOPAN
Join Date: Jan 2004
Old 06-03-2009 , 14:32   Re: SourceMod 1.2.1 Released
#11

HsHEisbaer: Use "sm plugins info" in your server console to see why they are not loaded.
__________________
egg
BAILOPAN is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-03-2009 , 16:31   Re: SourceMod 1.2.1 Released
#12

1.:
sm plugins info adminsounds
Filename: adminsounds.smx
Load error: Required extension "Client Preferences" file("clientprefs.ext") not running
File info: (title "Admin Sounds") (version "1.2.0")
File URL: http://forums.alliedmods.net

2.:
sm plugins info Client Preferences
[SM] Plugin Client.smx is not loaded.
HshEisbaer is offline
BAILOPAN
Join Date: Jan 2004
Old 06-03-2009 , 20:34   Re: SourceMod 1.2.1 Released
#13

HshEisbaer: repeat the process with "sm exts list" and "sm exts info"
__________________
egg
BAILOPAN is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-04-2009 , 06:36   Re: SourceMod 1.2.1 Released
#14

i am sorry for my problems but i am not a Pro in these Things.And my English isnīt perfect

1.:
sm exts list
[SM] Displaying 7 extensions:
[01] Automatic Updater (1.2.0): Updates SourceMod gamedata files
[02] Webternet (1.2.0): Extension for interacting with URLs
[03] SDK Tools (1.2.1): Source SDK Tools
[04] BinTools (1.2.1): Low-level C/C++ Calling API
[05] Top Menus (1.2.0): Creates sorted nested menus
[06] <FAILED> file "clientprefs.ext.so": Could not find "clientprefs" or "default" database configs
[07] SQLite (1.2.0): SQLite Driver

2.:
sm exts info
[SM] Usage: sm info <#>
HshEisbaer is offline
zhelev81
Veteran Member
Join Date: Nov 2007
Location: Varna,Bulgaria
Old 06-04-2009 , 08:09   Re: SourceMod 1.2.1 Released
#15

Bailopan could you also have a look on my problem I wrote in a previous post ?

9

Tnx for helping us
zhelev81 is offline
Send a message via ICQ to zhelev81 Send a message via MSN to zhelev81 Send a message via Skype™ to zhelev81
psychonic

BAFFLED
Join Date: May 2008
Old 06-04-2009 , 09:10   Re: SourceMod 1.2.1 Released
#16

Quote:
Originally Posted by zhelev81 View Post
Bailopan could you also have a look on my problem I wrote in a previous post ?

9

Tnx for helping us
You would have the answer to that if you weren't banned from my forums for running nosteam servers. You are running a glitched, old version of a plugin from there that there has since been a fixed release of.

It has nothing to do with SM 1.2.1

Last edited by psychonic; 06-04-2009 at 09:19.
psychonic is offline
MjrNuT
SourceMod Donor
Join Date: Feb 2008
Location: Under the Beaming CA Sun
Old 06-04-2009 , 12:00   Re: SourceMod 1.2.1 Released
#17

Quote:
Originally Posted by HshEisbaer View Post
i am sorry for my problems but i am not a Pro in these Things.And my English isnīt perfect

1.:
sm exts list
[SM] Displaying 7 extensions:
[01] Automatic Updater (1.2.0): Updates SourceMod gamedata files
[02] Webternet (1.2.0): Extension for interacting with URLs
[03] SDK Tools (1.2.1): Source SDK Tools
[04] BinTools (1.2.1): Low-level C/C++ Calling API
[05] Top Menus (1.2.0): Creates sorted nested menus
[06] <FAILED> file "clientprefs.ext.so": Could not find "clientprefs" or "default" database configs
[07] SQLite (1.2.0): SQLite Driver

2.:
sm exts info
[SM] Usage: sm info <#>
Did you modify your databases.cfg file?
__________________
Flames and Ash Gaming
Addon: SM v1.4.0-dev MM 1.8.5-dev
Plugins: Advertisements, Webshortcuts, spray tracer, SBans, RTD, gScramble Balance, misc
MjrNuT is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-04-2009 , 13:15   Re: SourceMod 1.2.1 Released
#18

thats my databases.cfg:


Code:
"Databases"
{
    "driver_default"        "mysql"
    
    "sourcebans"
    {
        "driver"            "mysql"
        "host"                "xxxxxxx-xx.mysql-gateway.de"
        "database"            "xxxxxxx-xx"
        "user"                "xxxxxxx-xx"
        "pass"                "mySQLpw"
        //"timeout"            "0"
        "port"            "3306"
    }
    
    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }
}
HshEisbaer is offline
Lebson506th
Veteran Member
Join Date: Jul 2008
Old 06-04-2009 , 16:19   Re: SourceMod 1.2.1 Released
#19

You deleted the "clientprefs" and "default" sections.

Add them back in (look at the databases.cfg in the sourcemod .zip package)
__________________
My Plugins
Spray Tracer by Nican, maintained by me
Simple TK Manager
DoD:S Admin Weapons

Links
Resistance and Liberation (A HL2 Multiplayer Modification)
Lebson506th is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-04-2009 , 16:41   Re: SourceMod 1.2.1 Released
#20

ok is that now right?

Code:
"Databases"
{
    "driver_default"        "mysql"
    
    "sourcebans"
    {
        "driver"            "mysql"
        "host"                "xxxxxxx-xx.mysql-gateway.de"
        "database"            "xxxxxxx-xx"
        "user"                "xxxxxxx-xx"
        "pass"                "mySQLpw"
        //"timeout"            "0"
        "port"            "3306"
    }
    
        "default"
    {
        "driver"            "default"
        "host"                "localhost"
        "database"            "sourcemod"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }

    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }

        
    "clientprefs"
    {
        "driver"            "sqlite"
        "host"                "localhost"
        "database"            "clientprefs-sqlite"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
}
HshEisbaer is offline
Closed Thread


Thread Tools
Display Modes

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 16:39.


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