AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved Plugins (https://forums.alliedmods.net/forumdisplay.php?f=109)
-   -   [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !nametag] (https://forums.alliedmods.net/showthread.php?t=298770)

napster_10 12-26-2018 16:09

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Code:

L 12/24/2018 - 18:11:03: [SM] Exception reported: Client index 0 is invalid
L 12/24/2018 - 18:11:03: [SM] Blaming: weapons.smx
L 12/24/2018 - 18:11:03: [SM] Call stack trace:
L 12/24/2018 - 18:11:03: [SM]  [0] IsClientInGame
L 12/24/2018 - 18:11:03: [SM]  [1] Line 283, weapons/menus.sp::FloatTimer

what is that and how to fix it?

kgns 12-26-2018 18:30

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by napster_10 (Post 2631129)
Code:

L 12/24/2018 - 18:11:03: [SM] Exception reported: Client index 0 is invalid
L 12/24/2018 - 18:11:03: [SM] Blaming: weapons.smx
L 12/24/2018 - 18:11:03: [SM] Call stack trace:
L 12/24/2018 - 18:11:03: [SM]  [0] IsClientInGame
L 12/24/2018 - 18:11:03: [SM]  [1] Line 283, weapons/menus.sp::FloatTimer

what is that and how to fix it?

you dont have to fix that, that probably occurs when someone disconnected right when he was changing his weapon float. does not break any functions, safe to ignore. might add an if check for it to not happen if i remember this when i have time

starcs 12-29-2018 14:03

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by JeffTM1TAP (Post 2630488)
Now for me, didnt work, crash, no logs, nothin, i am crying :(

Donwload PTAH Here

See if stops crashing

Niklavs 12-31-2018 06:18

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Code:

L 12/31/2018 - 11:39:55: [SM] Exception reported: Cannot set m_iItemIDLow with "FollowCSGOServerGuidelines" option enabled.
L 12/31/2018 - 11:39:55: [SM] Blaming: weapons.smx
L 12/31/2018 - 11:39:55: [SM] Call stack trace:
L 12/31/2018 - 11:39:55: [SM]  [0] SetEntProp
L 12/31/2018 - 11:39:55: [SM]  [1] Line 153, weapons.sp::SetWeaponProps
L 12/31/2018 - 11:39:55: [SM]  [2] Line 55, weapons/hooks.sp::GiveNamedItem

Although
core.cfg
Code:

        * Enables or disables whether SourceMod blocks known or potentially malicious plugins from loading.
        * It is STRONGLY advised that this is left enabled, there have been cases in the past with plugins that
        * allow anyone to delete files on the server, gain full rcon control, etc.
        *
        * "yes"        - Block malware or illegal plugins from loading (default)
        * "no"                - Warn about malware or illegal plugins loading
        */
        "BlockBadPlugins"        "no"

        /**
        * If a plugin takes too long to execute, hanging or freezing the game server in the process,
        * SourceMod will attempt to terminate that plugin after the specified timeout length has
        * passed. You can disable this feature by setting the value to "0".
        */
        "SlowScriptTimeout"        "8"
       
        /**
        * Per "http://blog.counter-strike.net/index.php/server_guidelines/", certain plugin
        * functionality will trigger all of the game server owner's Game Server Login Tokens
        * (GSLTs) to get banned when executed on a Counter-Strike: Global Offensive game server.
        *
        * Enabling this option will block plugins from using functionality that is known to cause this.
        * This option only has any effect on CS:GO. Note that this does NOT guarantee that you cannot
        * receive a ban.
        *
        * Disable this option at your own risk.
        */
        "FollowCSGOServerGuidelines"        "no"


kgns 12-31-2018 06:39

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by Niklavs (Post 2631974)
Code:

L 12/31/2018 - 11:39:55: [SM] Exception reported: Cannot set m_iItemIDLow with "FollowCSGOServerGuidelines" option enabled.
L 12/31/2018 - 11:39:55: [SM] Blaming: weapons.smx
L 12/31/2018 - 11:39:55: [SM] Call stack trace:
L 12/31/2018 - 11:39:55: [SM]  [0] SetEntProp
L 12/31/2018 - 11:39:55: [SM]  [1] Line 153, weapons.sp::SetWeaponProps
L 12/31/2018 - 11:39:55: [SM]  [2] Line 55, weapons/hooks.sp::GiveNamedItem

Although
core.cfg
Code:

        * Enables or disables whether SourceMod blocks known or potentially malicious plugins from loading.
        * It is STRONGLY advised that this is left enabled, there have been cases in the past with plugins that
        * allow anyone to delete files on the server, gain full rcon control, etc.
        *
        * "yes"        - Block malware or illegal plugins from loading (default)
        * "no"                - Warn about malware or illegal plugins loading
        */
        "BlockBadPlugins"        "no"

        /**
        * If a plugin takes too long to execute, hanging or freezing the game server in the process,
        * SourceMod will attempt to terminate that plugin after the specified timeout length has
        * passed. You can disable this feature by setting the value to "0".
        */
        "SlowScriptTimeout"        "8"
       
        /**
        * Per "http://blog.counter-strike.net/index.php/server_guidelines/", certain plugin
        * functionality will trigger all of the game server owner's Game Server Login Tokens
        * (GSLTs) to get banned when executed on a Counter-Strike: Global Offensive game server.
        *
        * Enabling this option will block plugins from using functionality that is known to cause this.
        * This option only has any effect on CS:GO. Note that this does NOT guarantee that you cannot
        * receive a ban.
        *
        * Disable this option at your own risk.
        */
        "FollowCSGOServerGuidelines"        "no"


how is this an issue with this plugin?

try restarting your server after changing core.cfg. if it still says that, youre doing something wrong or sourcemod is broken

Niklavs 12-31-2018 07:07

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by kgns (Post 2631977)
how is this an issue with this plugin?

try restarting your server after changing core.cfg. if it still says that, youre doing something wrong or sourcemod is broken

I did it already!
This started when I updated sourcemod to latest release ;(

kgns 12-31-2018 07:10

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by Niklavs (Post 2631981)
I did it already!
This started when I updated sourcemod to latest release ;(

then you have a problem with sourcemod not this plugin, sorry

Niklavs 01-01-2019 06:05

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by kgns (Post 2631982)
then you have a problem with sourcemod not this plugin, sorry

Wierd, even, if I turn FollowCSGOGuidelines to "yes", I can use only !knife :) !
Does this mean, everone can use sm_knife and my tokens won't get banned?

Sajmooooon 01-01-2019 09:26

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by Niklavs (Post 2632149)
Wierd, even, if I turn FollowCSGOGuidelines to "yes", I can use only !knife :) !
Does this mean, everone can use sm_knife and my tokens won't get banned?

CSGO doesn't ban tokens anymore.

Notifications 01-01-2019 16:15

Re: [CSGO] Weapon & Knives (Skins, Name Tags, StatTrak, Wear/Float) [!ws !knife !name
 
Quote:

Originally Posted by Sajmooooon (Post 2632181)
CSGO doesn't ban tokens anymore.

They do.


All times are GMT -4. The time now is 18:28.

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