5161
Off Topic / Re: Space Engineers Virus?
« on: November 19, 2015, 09:17:51 PM »
Malwarebytes is the best in my opinion to use, I also use Windows Defender as a backup.
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.
Nobody cares about your shiny studs, or playertype, or texture, or anything.Oh boy
And guess what addhealth calls? setdamagelevel.1. Duh
And when was this ever a thing?
The entire purpose of packaging/parenting is to avoid breaking default functions. Many, many mods package default functions, including engine functions.
please read the threadI did read the thread. They aren't working, so he should look at other face add-ons
redownload the faces and put them in the add-ons folder
But you can read what I type.Of course, but
I was thinking of the TF2 medipack
I know what I read. Do you think I just make stuff up?Holy stuff calm down, I can't read your mindCode: [Select]package gc_Medipack
{
function Armor::onCollision(%this,%obj,%col,%a,%b,%c,%d,%e,%f)
{
if(%col.dataBlock $= "gc_HealthPickupItem" && %col.canPickup && %obj.getDamagePercent() < 1 && minigameCstar fishe(%obj.client,%col))
{
if(%obj.getDamageLevel() > 0)
{
cancel(%obj.gc_bleed);
%obj.setDamageFlash(0);
%obj.setDamageLevel(%obj.getDamageLevel()-$GCStuff::HealthPickup);
serverPlay3D(gc_MediPackUseSound,%obj.getTransform());
if(isObject(%col.spawnBrick))
{
%col.fadeOut();
%col.schedule(%col.spawnBrick.itemRespawnTime,fadein);
}
else
%col.schedule(10,delete);
}
return;
}
parent::onCollision(%this,%obj,%col,%a,%b,%c,%d,%e,%f);
}
};
activatePackage(gc_Medipack);