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

[CS:GO] Weapon Stickers (!stickers)


Post New Thread Reply   
 
Thread Tools Display Modes
Kinway28
New Member
Join Date: Nov 2021
Old 11-13-2021 , 08:14   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #291

Quote:
Originally Posted by freak.exe_uLow View Post
Then join ESK0 his Discord, he wrote that he would help if there are problems (he is banned here) and please write the fix later so that other users can see it
Link: https://discord.gg/FNByp8s
Thanks for your guide! Now the issue has been fixed, it is about the eStickers.smx.
Can download the newest version from ESK0's github
Kinway28 is offline
oqyh
Senior Member
Join Date: May 2019
Location: United Arab Emirates
Old 11-15-2021 , 12:40   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #292

Here Is Full Recent Update For ALL in 1 Zip At [[Attach Files]] !ws !knife !gloves !stickers

|| Stockholm 2021 + Battlefield Stickers ||



Updated From:
[CSGO] Gloves
[CS:GO] Weapon Stickers
[CSGO] Weapon & Knives





Things You Need To Do:


1- Drag And Drop


2- Go To csgo/addons/sourcemod/configs/databases.cfg Add Database For stickers
Example :
"csgo_weaponstickers"
{
"driver" "default"
"host" "127.0.0.1"
"database" "csgo_weaponstickers"
"user" "xxxx"
"pass" "xxxxx"
//"timeout" "0"
"port" "3306"
}





Common Errors:



1- eItems.smx (eItems): unexpected error 23 in AskPluginLoad callback

Means You Have 2 eItems.smx delete the old 1





Done.!
__________________
.:[ >> My Plugins << ]:.

My discord : oqyh

Last edited by oqyh; 11-19-2021 at 16:35. Reason: Update Battlefield Stickers
oqyh is offline
bilbootv
New Member
Join Date: Nov 2021
Old 11-17-2021 , 14:37   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #293

Do we have the 2021 Stockholm Major players signatures update? Is there an 'easy' way to update this myself for future updates? I mean, which file should i change to add the new stickers in the menu...
bilbootv is offline
zordd
New Member
Join Date: Feb 2021
Old 11-23-2021 , 11:59   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #294

Quote:
Originally Posted by paulo_crash View Post
Attached is the new version, I didn't get to test it, anything a touch.

[EDIT]
For those who have errors in the database run this script in your sticker database.
PHP Code:
CREATE TABLE IF NOT EXISTS `weaponstickers1` (
            `
idINT NOT NULL AUTO_INCREMENT,
            `
steamidvarchar(64COLLATE utf8mb4_unicode_ci NOT NULL,
            `
weaponindexint(11NOT NULL DEFAULT '0',
            `
slot0int(11NOT NULL DEFAULT '0',
            `
slot1int(11NOT NULL DEFAULT '0',
            `
slot2int(11NOT NULL DEFAULT '0',
            `
slot3int(11NOT NULL DEFAULT '0',
            `
slot4int(11NOT NULL DEFAULT '0',
            `
slot5int(11NOT NULL DEFAULT '0',
            `
wear0float4 NOT NULL DEFAULT '0.000000',
            `
wear1float4 NOT NULL DEFAULT '0.000000',
            `
wear2float4 NOT NULL DEFAULT '0.000000',
            `
wear3float4 NOT NULL DEFAULT '0.000000',
            `
wear4float4 NOT NULL DEFAULT '0.000000',
            `
wear5float4 NOT NULL DEFAULT '0.000000',
            `
rotation0float4 NOT NULL DEFAULT '0.000',
            `
rotation1float4 NOT NULL DEFAULT '0.000',
            `
rotation2float4 NOT NULL DEFAULT '0.000',
            `
rotation3float4 NOT NULL DEFAULT '0.000',
            `
rotation4float4 NOT NULL DEFAULT '0.000',
            `
rotation5float4 NOT NULL DEFAULT '0.000',
            `
last_seenint(11NOT NULL DEFAULT '0'
            
PRIMARY KEY (`id`),
            
UNIQUE KEY (`steamid`, `weaponindex`)
            ) 
ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
If rpboelma continues, delete the database completely and create again from scratch.

please send me the new stickers version?
zordd is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 11-23-2021 , 12:17   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #295

Quote:
Originally Posted by zordd View Post
please send me the new stickers version?
@zordd attached the updated plugin with everything you need.

I recommend if you already have any eItems installed to remove them completely before submitting this new version.

See if just sending everything is ok, here I just sent it and everything is ok.

[EDIT]
In any case if you have problems with the database run this script.
PHP Code:
CREATE TABLE IF NOT EXISTS `csgo_weaponstickers` (
            `
idINT NOT NULL AUTO_INCREMENT,
            `
steamidvarchar(64COLLATE utf8mb4_unicode_ci NOT NULL,
            `
weaponindexint(11NOT NULL DEFAULT '0',
            `
slot0int(11NOT NULL DEFAULT '0',
            `
slot1int(11NOT NULL DEFAULT '0',
            `
slot2int(11NOT NULL DEFAULT '0',
            `
slot3int(11NOT NULL DEFAULT '0',
            `
slot4int(11NOT NULL DEFAULT '0',
            `
slot5int(11NOT NULL DEFAULT '0',
            `
wear0float4 NOT NULL DEFAULT '0.000000',
            `
wear1float4 NOT NULL DEFAULT '0.000000',
            `
wear2float4 NOT NULL DEFAULT '0.000000',
            `
wear3float4 NOT NULL DEFAULT '0.000000',
            `
wear4float4 NOT NULL DEFAULT '0.000000',
            `
wear5float4 NOT NULL DEFAULT '0.000000',
            `
rotation0float4 NOT NULL DEFAULT '0.000',
            `
rotation1float4 NOT NULL DEFAULT '0.000',
            `
rotation2float4 NOT NULL DEFAULT '0.000',
            `
rotation3float4 NOT NULL DEFAULT '0.000',
            `
rotation4float4 NOT NULL DEFAULT '0.000',
            `
rotation5float4 NOT NULL DEFAULT '0.000',
            `
last_seenint(11NOT NULL DEFAULT '0'
            
PRIMARY KEY (`id`),
            
UNIQUE KEY (`steamid`, `weaponindex`)
            ) 
ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
If you don't know how the best solution would be to delete the database and create one from scratch.

In any case, here's a screenshot of how to run the script also in your stickers database.

Attached Files
File Type: zip Stickers.zip (10.90 MB, 339 views)

Last edited by paulo_crash; 11-23-2021 at 12:34.
paulo_crash is offline
zordd
New Member
Join Date: Feb 2021
Old 11-25-2021 , 16:33   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #296

Quote:
Originally Posted by paulo_crash View Post
@zordd attached the updated plugin with everything you need.

I recommend if you already have any eItems installed to remove them completely before submitting this new version.

See if just sending everything is ok, here I just sent it and everything is ok.

[EDIT]
In any case if you have problems with the database run this script.
PHP Code:
CREATE TABLE IF NOT EXISTS `csgo_weaponstickers` (
            `
idINT NOT NULL AUTO_INCREMENT,
            `
steamidvarchar(64COLLATE utf8mb4_unicode_ci NOT NULL,
            `
weaponindexint(11NOT NULL DEFAULT '0',
            `
slot0int(11NOT NULL DEFAULT '0',
            `
slot1int(11NOT NULL DEFAULT '0',
            `
slot2int(11NOT NULL DEFAULT '0',
            `
slot3int(11NOT NULL DEFAULT '0',
            `
slot4int(11NOT NULL DEFAULT '0',
            `
slot5int(11NOT NULL DEFAULT '0',
            `
wear0float4 NOT NULL DEFAULT '0.000000',
            `
wear1float4 NOT NULL DEFAULT '0.000000',
            `
wear2float4 NOT NULL DEFAULT '0.000000',
            `
wear3float4 NOT NULL DEFAULT '0.000000',
            `
wear4float4 NOT NULL DEFAULT '0.000000',
            `
wear5float4 NOT NULL DEFAULT '0.000000',
            `
rotation0float4 NOT NULL DEFAULT '0.000',
            `
rotation1float4 NOT NULL DEFAULT '0.000',
            `
rotation2float4 NOT NULL DEFAULT '0.000',
            `
rotation3float4 NOT NULL DEFAULT '0.000',
            `
rotation4float4 NOT NULL DEFAULT '0.000',
            `
rotation5float4 NOT NULL DEFAULT '0.000',
            `
last_seenint(11NOT NULL DEFAULT '0'
            
PRIMARY KEY (`id`),
            
UNIQUE KEY (`steamid`, `weaponindex`)
            ) 
ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
If you don't know how the best solution would be to delete the database and create one from scratch.

In any case, here's a screenshot of how to run the script also in your stickers database.

thanks for plugins.
when I type the command this appears for all weapons
● drozz: sticker!
[Weapon Stickers] Essa arma não é válida para personalizar os stickers.
zordd is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 11-25-2021 , 16:47   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #297

Quote:
Originally Posted by zordd View Post
thanks for plugins.
when I type the command this appears for all weapons
● drozz: sticker!
[Weapon Stickers] Essa arma não é válida para personalizar os stickers.
Update eItems: https://github.com/ESK0/eItems
paulo_crash is offline
twane
New Member
Join Date: Apr 2020
Old 11-26-2021 , 18:57   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #298

Quote:
Originally Posted by paulo_crash View Post
Hey i had this error too, updated eItems using your link but now i have another (very weird) error, the code is to new.

"sm plugins reload eItems.smx
[SM] Plugin eItems.smx failed to reload: Unable to load plugin (unsupported feature set; code is too new)."

Last edited by twane; 11-26-2021 at 18:58.
twane is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 11-27-2021 , 09:12   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #299

I'll leave all links to plugins and extensions that need to be updated for the stickers to work.

And finally the plugin for Stickers: https://github.com/z1ntex/CSGO_WeaponStickers

Downloading the latest versions of the links I sent the plugin and everything works correctly.

I recommend just removing the eItems that you already have on your server, from him everything related to it and I sent it again.
paulo_crash is offline
twane
New Member
Join Date: Apr 2020
Old 11-27-2021 , 11:19   Re: [CS:GO] Weapon Stickers (!stickers)
Reply With Quote #300

Quote:
Originally Posted by paulo_crash View Post
I'll leave all links to plugins and extensions that need to be updated for the stickers to work.

And finally the plugin for Stickers: https://github.com/z1ntex/CSGO_WeaponStickers

Downloading the latest versions of the links I sent the plugin and everything works correctly.

I recommend just removing the eItems that you already have on your server, from him everything related to it and I sent it again.
Thanks a lot for your time man <3
twane 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:22.


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