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

[ANY] Store by Zephyrus [1.1 - 03.01.2016]


Post New Thread Reply   
 
Thread Tools Display Modes
mazdarx8
Veteran Member
Join Date: Aug 2014
Old 05-31-2016 , 05:11   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #541

Thank you so much!
mazdarx8 is offline
Nanozke
Member
Join Date: Apr 2016
Location: Australia
Old 05-31-2016 , 07:26   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #542

Store comes up in !admin

Although no other command works. Everything else says its running, no error logs etc.
Nanozke is offline
TrappaTroopa
Senior Member
Join Date: Feb 2016
Old 05-31-2016 , 09:53   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #543

Resolved. Had to create the Database and Tables Manually. Then I removed the tables and the plugin recreated the tables with the right permissions and values

For the life of me I can not figure out why this plugin will not autmatically create a database in MYSQL. I have no error logs in my /addons/sourcemod/logs/ I have put this line in my /csgo/cfg/sourcemod/plugin.store

Code:
// Name of the default store database entry
// Default: "storage-local"
sm_store_database "store"
Here is my Databases.cfg

Code:
"Databases"
{
    "driver_default"    "mysql"
    
    // When specifying "host", you may use an IP address, a hostname, or a socket file path
    
    "default"
    {
    "driver"    "mysql"
    "host"        "127.0.0.1"
    "database"    "default"
    "user"        "usernamehere"
    "pass"        "passwordhere"
    }
    
    "storage-local"
    {
    "driver"    "sqlite"
    "host"        "localhost"
    "database"    "sourcemod-local"
    "user"        "root"
    "pass"        ""
    }

    "clientprefs"
    {
    "driver"    "mysql"
    "host"        "127.0.0.1"
    "database"    "clientprefs"
    "user"        "usernamehere"
    "pass"        "passwordhere!"
    }

    "multi1v1"
    {
       "driver"        "mysql"
        "host"          "127.0.0.1"
        "database"      "multi1v1"
        "user"          "usernamehere"
        "pass"          "passwordhere!"
    }

    "store"
    {
        "driver"        "mysql"
        "host"          "127.0.0.1"
        "database"    "store"
        "user"          "usernamehere"
        "pass"          "passwordhere!"
    }
        
     "jukebox"
    {
        "driver"        "mysql"
        "host"          "127.0.0.1"
        "database"   "jukebox"
        "user"          "usernamehere"
        "pass"          "passwordhere!"
    }
        
}

Last edited by TrappaTroopa; 05-31-2016 at 19:30. Reason: Resolved. Had to create the Database and Tables Manually. Then I removed the tables and the plugin recreated the tables
TrappaTroopa is offline
mazdarx8
Veteran Member
Join Date: Aug 2014
Old 05-31-2016 , 10:42   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #544

What I did wrong? (Playerskins)

T can see t skins but not CT
Ct can see t skins but not CT

Last edited by mazdarx8; 05-31-2016 at 10:42.
mazdarx8 is offline
wolvez04
Senior Member
Join Date: Feb 2016
Location: Andora
Old 06-01-2016 , 02:41   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #545

Quote:
Originally Posted by mazdarx8 View Post
What I did wrong? (Playerskins)

T can see t skins but not CT
Ct can see t skins but not CT
You currently have this below? 2 = Terrorists, 3 = CTs
Terrorists only = "team" "2"
CT only = "team" "3"

You must use 4 or 1. I forgot exactly which one

Last edited by wolvez04; 06-01-2016 at 02:43.
wolvez04 is offline
Cooky
Veteran Member
Join Date: Jun 2010
Location: 127.0.0.1
Old 06-01-2016 , 04:42   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #546

Is there a way to have 2 skins equipped in the store?

I have a Zombie Escape server and I want skin "x" equipped as zombie and skin "x" as human. But the store can equip only 1 skin (duh!)

Any solution?
Cooky is offline
mazdarx8
Veteran Member
Join Date: Aug 2014
Old 06-01-2016 , 06:02   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #547

Quote:
Originally Posted by wolvez04 View Post
You currently have this below? 2 = Terrorists, 3 = CTs
Terrorists only = "team" "2"
CT only = "team" "3"

You must use 4 or 1. I forgot exactly which one

Hi, I tried 4 yesterday and this was working. Thanks.
mazdarx8 is offline
mazdarx8
Veteran Member
Join Date: Aug 2014
Old 06-01-2016 , 06:02   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #548

Quote:
Originally Posted by Cooky View Post
Is there a way to have 2 skins equipped in the store?

I have a Zombie Escape server and I want skin "x" equipped as zombie and skin "x" as human. But the store can equip only 1 skin (duh!)

Any solution?
If human (with skin) is killed by zombie, is he changing is skin to zombie skin?
mazdarx8 is offline
Franc1sco
Veteran Member
Join Date: Oct 2010
Location: Spain (Madrid)
Old 06-01-2016 , 07:31   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #549

Quote:
Originally Posted by Cooky View Post
Is there a way to have 2 skins equipped in the store?

I have a Zombie Escape server and I want skin "x" equipped as zombie and skin "x" as human. But the store can equip only 1 skin (duh!)

Any solution?

Use "zrclass" because this store support zrclasses.
__________________
Veteran Coder -> Activity channel
Coding on CS2 and taking paid and free jobs.

Contact: Steam, Telegram or discord ( franug ).

You like my work? +Rep in my steam profile comments or donate.

Franc1sco is offline
Send a message via MSN to Franc1sco
Cooky
Veteran Member
Join Date: Jun 2010
Location: 127.0.0.1
Old 06-01-2016 , 07:45   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #550

Quote:
Originally Posted by Franc1sco View Post
Use "zrclass" because this store support zrclasses.
Already using... doesn't work properly... Only human skins...
Cooky 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 21:29.


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