Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
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;
}
}
}