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
Also to modify the size of the shield go to the classes that inherit from KFPickup, Attachment and in defaults add DrawScale=0.5 for example and the shield will have that scale. For the first person you can change StandardDisplayFOV to a higher value so that the gun moves away and looks smaller..
function AdjustPlayerDamage(out int Damage, Pawn instigatedBy, Vector HitLocation, out Vector Momentum, class<DamageType> DamageType)
{
if(DamageType!=class'Fell')
{
if((Ammo[0].AmmoAmount - Damage) <= 0)
{
DetachFromPawn(Instigator);
Destroy();
Damage = 0;
}
else
{
Ammo[0].AmmoAmount -= Damage;
Damage = 0;
}
}
}