271
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Join ottospark's server:Advertising it like that really doesn't help when there's a whitelist required anyway.
173.16.67.240
Yes he cares a lot about you and me. Maybe its time for your mom to return to him, and live a better life. Think not that she is suffering but think that she has lived a good life, raised you and any other possible siblings. Be thankfull for the time you have had with her. I could not even begin to imagine how I would feel if the same thing happened to my mom, and I'm sorry for the state she is in.
Sometimes the innocent must suffer in order to punish the wicked. Is it not gods right to govern the universe? We might suffer for the short time we have here but those who stay righteous will reap the rewards in the life to come. With out the knowledge of my savior and his father, life would be empty for me.
Sometimes the innocent must suffer in order to punish the wicked.
mustSo I heard this God of yours was all-powerful and such. Why "must", exactly?
function Dodgeball_Projectile::damage(%this,%obj,%col,%fade,%pos,%normal)
{
if(%this.directDamage <= 0)
return;
%damageType = $DamageType::Direct;
if(%this.DirectDamageType)
%damageType = %this.DirectDamageType;
if(%col.getType() & $TypeMasks::PlayerObjectType)
{
%scale = getWord(%col.getScale(), 2);
%directDamage = %col.getDatablock().maxDamage * 6 * %scale;
%col.damage(%obj, %pos, %directDamage, %damageType);
}
else
{
%scale = getWord(%obj.getScale(), 2);
%directDamage = 5 * %scale;
%col.damage(%obj, %pos, %directDamage, %damageType);
}
}Does (6 x maximum health) damage to players. (in case of "Overheal" "armor" whatever) It should use the correct CI and everything. raycastWeaponTargets =
$TypeMasks::StaticObjectType |
$TypeMasks::TerrainObjectType |
$TypeMasks::VehicleObjectType |
$TypeMasks::FXBrickObjectType;