Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
It's been a few years since I touched this addon's code and so I may be wrong, but from what I remember the reason I disallowed swapping between the same weapon type (I assume you mean an M16 with another M16, for example) is that the game doesn't let you carry two identical guns at the same time, not even for the single instant this addon needs.
This will probably require a non-trivial addon rework, but I'm not opposed to that. If I ever update this, it will be to add what you ask
I had to limit this addon to TTT only just because there already was at least that one for the other gamemodes
[code]Player:DropWeapon(Weapon)[/code]
just remove that gun:
[code]
if IsValid(Weapon) then
Weapon:Remove()
end
[/code]
I guess it can be nice to have when playing with friends, I'll see what I can do