Zainstaluj Steam
zaloguj się
|
język
简体中文 (chiński uproszczony)
繁體中文 (chiński tradycyjny)
日本語 (japoński)
한국어 (koreański)
ไทย (tajski)
български (bułgarski)
Čeština (czeski)
Dansk (duński)
Deutsch (niemiecki)
English (angielski)
Español – España (hiszpański)
Español – Latinoamérica (hiszpański latynoamerykański)
Ελληνικά (grecki)
Français (francuski)
Italiano (włoski)
Bahasa Indonesia (indonezyjski)
Magyar (węgierski)
Nederlands (niderlandzki)
Norsk (norweski)
Português (portugalski – Portugalia)
Português – Brasil (portugalski brazylijski)
Română (rumuński)
Русский (rosyjski)
Suomi (fiński)
Svenska (szwedzki)
Türkçe (turecki)
Tiếng Việt (wietnamski)
Українська (ukraiński)
Zgłoś problem z tłumaczeniem









function GM:AddCustomAmmo()
game.AddAmmoType({name = "pulse"})
game.AddAmmoType({name = "stone"})
game.AddAmmoType({name = "spotlamp"})
game.AddAmmoType({name = "manhack"})
game.AddAmmoType({name = "manhack_saw"})
end
Now all what you need to do is just adding this line of Code to the function:
game.AddAmmoType({name = "combinebarricade"})
and the Result should be:
function GM:AddCustomAmmo()
game.AddAmmoType({name = "pulse"})
game.AddAmmoType({name = "stone"})
game.AddAmmoType({name = "combinebarricade"})
game.AddAmmoType({name = "spotlamp"})
game.AddAmmoType({name = "manhack"})
game.AddAmmoType({name = "manhack_saw"})
end
This will add a Custom Ammo Type called "combinebarricade", which is what the Combine Barricade uses, and that will fix the problem.