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

[CSGO] Gloves


Post New Thread Reply   
 
Thread Tools Display Modes
lugaa
Senior Member
Join Date: Dec 2018
Old 12-09-2019 , 23:14   Re: [CSGO] Gloves
Reply With Quote #121

The gloves and hands disappear to work with this plugin. how to fix it

https://forums.alliedmods.net/showthread.php?t=318981
lugaa is offline
kgns
Senior Member
Join Date: May 2017
Location: Istanbul, Turkey
Old 12-10-2019 , 03:35   Re: [CSGO] Gloves
Reply With Quote #122

Quote:
Originally Posted by lugaa View Post
The gloves and hands disappear to work with this plugin. how to fix it

https://forums.alliedmods.net/showthread.php?t=318981
there's a fix for it in that plugins thread: https://forums.alliedmods.net/showpo...&postcount=106

ask for the author to add this fix into his plugin
__________________

OyunHost Sunucu Hizmetleri: https://www.oyunhost.net
kgns is offline
paulo_crash
AlliedModders Donor
Join Date: May 2016
Location: Brazil
Old 12-10-2019 , 12:11   Re: [CSGO] Gloves
Reply With Quote #123

I have on several servers installed this gloves, all the latest version of GitHub.

But only one of the servers the plugin is giving the following error:
Code:
L 12/10/2019 - 13:56:25: [SM] Blaming: csgo_gloves.smx
L 12/10/2019 - 13:56:25: [SM] Call stack trace:
L 12/10/2019 - 13:56:25: [SM]   [0] SetFailState
L 12/10/2019 - 13:56:25: [SM]   [1] Line 250, C:\Users\boy-l\Google Drive\ZK Servidores\Addons\Counter Strike Global Offensive\Editar Plugins\addons\sourcemod\scripting\csgo_gloves.sp::RefreshKV
L 12/10/2019 - 13:56:25: [SM]   [2] Line 144, C:\Users\boy-l\Google Drive\ZK Servidores\Addons\Counter Strike Global Offensive\Editar Plugins\addons\sourcemod\scripting\csgo_gloves.sp::OnPluginStart
L 12/10/2019 - 13:56:25: [SM] Unable to load plugin "csgo_gloves.smx": Error detected in plugin startup (see error logs)
What could it be? I made no changes to the plugin script.

SourceMod v1.10 - build 6458

[EDIT1]
Forget it, I saw now that it is not your plugin, my mistake.

Last edited by paulo_crash; 12-10-2019 at 12:14. Reason: My mistake :)
paulo_crash is offline
Prastie
Junior Member
Join Date: Apr 2013
Old 01-27-2020 , 20:16   Re: [CSGO] Gloves
Reply With Quote #124

Hello, how can i fix this bug?

https://i.imgur.com/Ao3cGdG.png
https://i.imgur.com/c7yT7VI.png
https://i.imgur.com/9Lj4f2Y.png

This problem appear just when i use custom gloves (the "gloves" trail that remain behind when jump), with default glove seems to work without problem.

I searched to much for this bug and can't find anything how to fix it because i don't know how to call this bug so I would be grateful if you can help me!

Thanks!
Prastie is offline
kgns
Senior Member
Join Date: May 2017
Location: Istanbul, Turkey
Old 01-27-2020 , 20:39   Re: [CSGO] Gloves
Reply With Quote #125

Quote:
Originally Posted by Prastie View Post
Hello, how can i fix this bug?

https://i.imgur.com/Ao3cGdG.png
https://i.imgur.com/c7yT7VI.png
https://i.imgur.com/9Lj4f2Y.png

This problem appear just when i use custom gloves (the "gloves" trail that remain behind when jump), with default glove seems to work without problem.

I searched to much for this bug and can't find anything how to fix it because i don't know how to call this bug so I would be grateful if you can help me!

Thanks!
sm_gloves_enable_world_model - Enable/Disable gloves to be seen by other living players
Default: "1"

change this cvar to 0 and then restart your server
__________________

OyunHost Sunucu Hizmetleri: https://www.oyunhost.net
kgns is offline
Prastie
Junior Member
Join Date: Apr 2013
Old 01-27-2020 , 20:59   Re: [CSGO] Gloves
Reply With Quote #126

Quote:
Originally Posted by kgns View Post
sm_gloves_enable_world_model - Enable/Disable gloves to be seen by other living players
Default: "1"

change this cvar to 0 and then restart your server
Oh i forgot about this option, thank you very much, i'm realy happy finally this problem is solved !
Thank you!
Prastie is offline
zo6zo6
Member
Join Date: Feb 2018
Old 02-19-2020 , 14:07   Re: [CSGO] Gloves
Reply With Quote #127

can somebody compile this plugin with the following code in it?

i know nothing about coding and i cant compile it myself

i have the bug shown in this video and the author of the store gave me this code to fix it

video:
https://youtu.be/jOi3k0S4K8Q

PHP Code:
public Action Store_OnSetPlayerSkinArms(int client, const char[] arms)
{
    if (
CheckPlayerHasGloves(client)) // this check define in your glove plugin
    
{
        return 
Plugin_Handled;
    }
    return 
Plugin_Continue;


Last edited by zo6zo6; 02-19-2020 at 14:11.
zo6zo6 is offline
kgns
Senior Member
Join Date: May 2017
Location: Istanbul, Turkey
Old 02-20-2020 , 00:38   Re: [CSGO] Gloves
Reply With Quote #128

Quote:
Originally Posted by zo6zo6 View Post
can somebody compile this plugin with the following code in it?

i know nothing about coding and i cant compile it myself

i have the bug shown in this video and the author of the store gave me this code to fix it

video:
https://youtu.be/jOi3k0S4K8Q

PHP Code:
public Action Store_OnSetPlayerSkinArms(int client, const char[] arms)
{
    if (
CheckPlayerHasGloves(client)) // this check define in your glove plugin
    
{
        return 
Plugin_Handled;
    }
    return 
Plugin_Continue;

Quote:
Originally Posted by kgns View Post
Notes
  • If you are using Custom Player OR Arms Models on your server, you have to modify the plugin that does the model changing, and make it use Gloves_SetArmsModel native function instead. Or your players arms will be invisible if they do not use any gloves.
    ...
tell the author of your store plugin to check this plugins natives and add support for this gloves plugin if he wants gloves to work. there are natives released just for this problem
__________________

OyunHost Sunucu Hizmetleri: https://www.oyunhost.net
kgns is offline
zo6zo6
Member
Join Date: Feb 2018
Old 02-20-2020 , 04:04   Re: [CSGO] Gloves
Reply With Quote #129

Quote:
Originally Posted by kgns View Post
tell the author of your store plugin to check this plugins natives and add support for this gloves plugin if he wants gloves to work. there are natives released just for this problem
ok, thank you
i'll let him now

**EDIT**
can somebody tell me what can i add to the attached sp to make it work with gloves?
i want to know the code so that i can use it when a new update of store comes
Attached Files
File Type: sp Get Plugin or Get Source (skin.sp - 159 views - 22.1 KB)

Last edited by zo6zo6; 02-20-2020 at 04:24.
zo6zo6 is offline
kgns
Senior Member
Join Date: May 2017
Location: Istanbul, Turkey
Old 02-20-2020 , 05:03   Re: [CSGO] Gloves
Reply With Quote #130

Quote:
Originally Posted by zo6zo6 View Post
ok, thank you
i'll let him now

**EDIT**
can somebody tell me what can i add to the attached sp to make it work with gloves?
i want to know the code so that i can use it when a new update of store comes
ask for the store plugin author to implement it, so you dont have to edit it after every update
__________________

OyunHost Sunucu Hizmetleri: https://www.oyunhost.net
kgns is offline
Reply


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 11:27.


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