I scripted this because when i was lookin for a damage tester/meter i couldnt find one so i scripted my own works good modify how ever u want the 4 scripts go in the following of a placeable : OnDamage - _damage_meter / OnDeath - comeback 2_2 / OnPhysicalAttacked - _damage_tester_f / OnUsed - _dmg_used_by
Posted by daja.hester at 2006-08-29 22:47:42 Voted 10.00 on 08/29/06
Bravo ZEBRaHEaD, I love all your stuff. _________________________ There is always a light at the end of the tunnel. Just pray it isnt a train
Posted by druids_scion at 2006-04-29 23:13:01 Voted 4.00 on 04/29/06
I am sorry but I found the _damage_meter script quite faulty as it would subtract 9 or 5 from your actual damage meaning it doesnt serve its purpose... try ... this.
void main()
{
/*
Made by Zebr@ He@d-Modified by druids_scion.
*/
string oMess = IntToString(oDamage);
int oMess2 = (oDamage);
SetLocalInt(oDamager,"DAM",oMess2);
SetLocalString(oDamager,"NAME",oName);
DelayCommand(0.5,AssignCommand(OBJECT_SELF,SpeakString("Damage "+oMess,TALKVOLUME_TALK)));
int A = GetCampaignInt("MAX","DAM2",oMod);
if (oMess2>A){
DestroyCampaignDatabase("MAX");
SetCampaignInt("MAX","DAM2",oMess2,oMod);
SetCampaignString("MAX","NAME2",oName,oMod);
DelayCommand(1.0,ApplyEffectToObject(DURATION_TYPE_TEMPORARY,EffectVisualEffect(
VFX_FNF_PWSTUN),oDamager,6.0f));
AssignCommand(oDamager,DelayCommand(3.0,FloatingTextStringOnCreature(" ",oDamager,FALSE)));
AssignCommand(oDamager,DelayCommand(3.0,FloatingTextStringOnCreature("New Max Damage",oDamager,FALSE)));
}
else
{
}
}
Posted by Nizeil at 2006-04-17 04:27:46 Voted 8.00 on 04/17/06
Good work. _________________________ It's not important what you achieve in your life. What is important is that what you leave behind when you die.
Posted by Sexy Chick at 2006-04-08 18:59:22 Voted 10.00 on 04/08/06
WOW this is good _________________________ Ðèi¢
Posted by lalalawhatever at 2006-01-21 23:54:17 Voted 1.00 on 01/21/06
again, how unoriginal can you be
Posted by Anonymous ( 24.182.xxx.xxx ) at 2005-11-06 19:15:23
thanx for voting :(
Posted by ZEBRaHEaD at 2005-11-02 17:32:29 Voted 10.00 on 11/02/05
I like it :)
Posted by ZEBRaHEaD at 2005-10-25 01:30:37 Voted 10.00 on 11/02/05
Just to let anybody know that if you didnt make the placeable with the placeable wizard you must right click the placeable that you put in an area for the damage meter and Add to Palette for the meter to comeback after you damage it. :)
You must be Logged In to post comments in this section.