mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-03-11 00:44:27 +00:00
Compare commits
2 Commits
e48308f8af
...
9576b41ace
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9576b41ace | ||
|
|
0decc0405a |
15
README.md
15
README.md
@@ -140,12 +140,27 @@ Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin
|
||||
- **[CS2-WeaponPaints-Web](https://github.com/rogeraabbccdd/CS2-WeaponPaints-Web)**
|
||||
## 🤔 Troubleshooting
|
||||
<details>
|
||||
|
||||
**Skins are not changing:**
|
||||
Set FollowCSGOGuidelines to false in cssharp’s core.jcon config
|
||||
|
||||
**Database error table does not exists:**
|
||||
Plugin is not loaded or configured with mysql credentials. Tables are auto-created by plugin.
|
||||
|
||||
**An error occured in Get....FromDatabase:**
|
||||
If you used WeaponPaints and you update to newer version you could get this error. You need to add this queries to Database:
|
||||
```
|
||||
ALTER TABLE wp_player_skins
|
||||
ADD COLUMN weapon_nametag VARCHAR(128) DEFAULT NULL,
|
||||
ADD COLUMN weapon_stattrak tinyint(1) NOT NULL,
|
||||
ADD COLUMN weapon_stattrak_count int(10) NOT NULL,
|
||||
ADD COLUMN weapon_sticker_0 VARCHAR(128) DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
ADD COLUMN weapon_sticker_1 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
ADD COLUMN weapon_sticker_2 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
ADD COLUMN weapon_sticker_3 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
ADD COLUMN weapon_sticker_4 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||
ADD COLUMN weapon_keychain VARCHAR(128) DEFAULT '0;0;0;0;0' COMMENT 'id;x;y;z;seed';
|
||||
```
|
||||
</details>
|
||||
|
||||
### Use this plugin at your own risk! Using this may lead to GSLT ban or something else Valve come with. [Valve Server guidelines](https://blog.counter-strike.net/index.php/server_guidelines/)
|
||||
|
||||
Reference in New Issue
Block a user