splewis / csgo-multi-1v1

CS:GO Sourcemod plugin to create multi-1v1 arena servers
GNU General Public License v3.0
278 stars 68 forks source link

USP-S & P2000 option in weapons menu #284

Open crashzk opened 2 years ago

crashzk commented 2 years ago

How can I configure to have USP-S & P2000 option in weapons menu?

I tried as follows:

        "weapon_hkp2000"
        {
            "name"      "P2000"
            "team"      "CT"
        }
        "weapon_usp_silencer"
        {
            "name"      "USP-S"
            "team"      "CT"
        }

However, the player always takes the pistol that is equipped in his inventory.

Some way to make both pistols available to players, no matter which weapon is activated in your inventory.

splewis commented 2 years ago

IIRC, you need to tag it as team "T" for it to always give you the correct gun (regardless of inventory).

That has the downside of making the server not give the player any skin for the gun, so it's a bit of a tradeoff.

crashzk commented 2 years ago

I understand, I would like to have both pistol options, the same for MA41-as and M4A4.

Or even the option to have both primary and secondary weapons free for both teams, they can choose any weapon in the case, option "ANY" in the case.

In any case, I will do some tests here and return with feedback.