AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   TF2Items (https://forums.alliedmods.net/forumdisplay.php?f=146)
-   -   Attributes working for everyone else except me (https://forums.alliedmods.net/showthread.php?t=225710)

infi 09-08-2013 08:27

Attributes working for everyone else except me
 
1 Attachment(s)
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?

asherkin 09-08-2013 10:35

Re: Attributes working for everyone else except me
 
The steamid-specific block needs to be before the wildcard one.

infi 09-08-2013 23:23

Re: Attributes working for everyone else except me
 
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.

infi 09-22-2013 20:21

Re: Attributes working for everyone else except me
 
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"
        }
    }
   
}


asherkin 09-22-2013 21:07

Re: Attributes working for everyone else except me
 
The first match wins, it's not additive.

infi 09-23-2013 02:10

Re: Attributes working for everyone else except me
 
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.

Powerlord 09-23-2013 10:42

Re: Attributes working for everyone else except me
 
Quote:

Originally Posted by infi (Post 2039447)
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.


All times are GMT -4. The time now is 15:17.

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