Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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