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

Attributes working for everyone else except me


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
infi
Member
Join Date: Sep 2013
Old 09-08-2013 , 08:27   Attributes working for everyone else except me
Reply With Quote #1

Okay so I manage the item modding of a hale server, and so far I put this in:
Code:
"custom_weapons_v3" 
{
	"*" // Works for everyone but me
	{
		"772" 
		{
			"quality"	"10"
			"1"			"418; 0"
			"2"			"419; 0"
			"3"			"54; 1"
			"4"			"3; 0.83"
			"5"			"6; 0.80"
			"6"			"1; 1"
			"7"			"45; 0.9"
			"8"			"77; 0.78"
			"9"			"15; 0"
		}
		"525"
		{
			"quality"	"10"
			"1"			"1; 0.85"
			"2"			"6; 0.9"
			"3"			"3; 0.83"
			"4"			"296; 0"
		}
		"751"
		{
			"quality"	"10"
			"1"			"2; 1.4"
			"2"			"79; 0.5"
			"3"			"106; 1.05"
			"4"			"51; 1"
		}
		"349"
		{
			"quality"	"10"
			"1"			"208; 1"
			"2"			"5; 0.9"
		}
		"38"
		{
			"quality"	"10"
			"1"			"149; 1"
		}
		"401"
		{
			"quality"	"10"
			"1"			"107; 1.1"
			"2"			"128; 1"
		}
	}
	"STEAM_0:0:20061521" // Doesn't work
	{
		"*"
		{
			"quality"	"10"
			"1"			"436; 1"
		}
	}
}
Can anyone point out what is wrong?
Attached Files
File Type: txt tf2items.weapons.txt (720 Bytes, 209 views)
infi is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 09-08-2013 , 10:35   Re: Attributes working for everyone else except me
Reply With Quote #2

The steamid-specific block needs to be before the wildcard one.
__________________
asherkin is offline
infi
Member
Join Date: Sep 2013
Old 09-08-2013 , 23:23   Re: Attributes working for everyone else except me
Reply With Quote #3

Still doesn't work.

Funny enough

Code:
        "772" // doesn't work for me
        {
            "quality"    "10"
            "1"            "418; 0"
            "2"            "419; 0"
            "3"            "54; 1"
            "4"            "3; 0.83"
            "5"            "6; 0.80"
            "6"            "1; 1"
            "7"            "45; 0.9"
            "8"            "77; 0.78"
            "9"            "15; 0"
        }
        "525" // works for me
        {
            "quality"    "10"
            "1"            "1; 0.85"
            "2"            "6; 0.9"
            "3"            "3; 0.83"
            "4"            "296; 0"
        }
        "751" // doesn't work for me
        {
            "quality"    "10"
            "1"            "2; 1.4"
            "2"            "79; 0.5"
            "3"            "106; 1.05"
            "4"            "51; 1"
        }
Works for everyone else but me.

Last edited by infi; 09-08-2013 at 23:24.
infi is offline
infi
Member
Join Date: Sep 2013
Old 09-22-2013 , 20:21   Re: Attributes working for everyone else except me
Reply With Quote #4

No one?

Code:
"custom_weapons_v3" 
{
    "STEAM_0:0:myid" // entire block works for me
    {
        "161"
        {
            "quality"    "10"
            "1"            "1; 0.8"
            "2"            "166; 15"
            "3"            "83; 0.6"
        }
        "572"
        {
            "quality"    "1"
            "1"            "5; 1.3"
            "2"            "250; 1"
            "3"            "138; 0.8"
        }
        "*"
        {
            "1"            "150; 1"
            "2"            "142; 49151"
            "3"            "261; 16729344"
        }
    }
    "*" // entire block doesn't work on me, I've tried putting these values into my block, doesn't work
    {    
        "525"
        {
            "quality"    "10"
            "1"            "1; 0.85"
            "2"            "6; 0.9"
            "3"            "3; 0.83"
            "4"            "296; 0"
        }
        "751"
        {
            "quality"    "10"
            "1"            "2; 1.4"
            "2"            "79; 0.5"
            "3"            "106; 1.05"
            "4"            "51; 1"
        }
        "772"
        {
            "quality"    "10"
            "1"            "418; 0"
            "2"            "419; 0"
            "3"            "54; 0.93"
            "4"            "3; 0.83"
            "5"            "6; 0.80"
            "6"            "1; 1"
            "7"            "45; 1"
            "8"            "77; 0.78"
        }
        "349"
        {
            "quality"    "10"
            "1"            "1; 0.60"
            "2"            "208; 1"
            "3"            "5; 0.85"
        }
    }
    
}
infi is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 09-22-2013 , 21:07   Re: Attributes working for everyone else except me
Reply With Quote #5

The first match wins, it's not additive.
__________________
asherkin is offline
infi
Member
Join Date: Sep 2013
Old 09-23-2013 , 02:10   Re: Attributes working for everyone else except me
Reply With Quote #6

I even removed the entire block with my steam ID and it still doesn't work.
I've done "tf2items_manager_reload" every time, rejoined the server, and it still doesn't work.

I'm also playing Saxton Hale.
infi is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-23-2013 , 10:42   Re: Attributes working for everyone else except me
Reply With Quote #7

Quote:
Originally Posted by infi View Post
I even removed the entire block with my steam ID and it still doesn't work.
I've done "tf2items_manager_reload" every time, rejoined the server, and it still doesn't work.

I'm also playing Saxton Hale.
VSH does a bunch of its own weapon changes and may be overriding your changes with its own.
__________________
Not currently working on SourceMod plugin development.
Powerlord 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 18:19.


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