r5138 - in trunk/data: . qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Nov 28 04:52:37 EST 2008


Author: div0
Date: 2008-11-28 04:52:25 -0500 (Fri, 28 Nov 2008)
New Revision: 5138

Modified:
   trunk/data/effectinfo.txt
   trunk/data/qcsrc/server/w_seeker.qc
Log:
seeker: separate out flac effect


Modified: trunk/data/effectinfo.txt
===================================================================
--- trunk/data/effectinfo.txt	2008-11-28 08:29:34 UTC (rev 5137)
+++ trunk/data/effectinfo.txt	2008-11-28 09:52:25 UTC (rev 5138)
@@ -3028,3 +3028,91 @@
 airfriction 12
 originjitter 1 1 1
 velocityjitter 50 50 50
+
+effect flac_explode
+countabsolute 1
+type decal
+tex 8 16
+size 18 28
+alpha 256 256 0
+originjitter 40 40 40
+lightradius 150
+lightradiusfade 400
+lightcolor 8 4 1
+// fire effect which make bright dot inside
+effect flac_explode
+notunderwater
+count 6
+type smoke
+tex 48 55
+color 0xffe955 0xff5a00
+size 6 16
+sizeincrease 5
+alpha 128 256 456
+bounce 1.5
+airfriction 8
+liquidfriction 8
+originjitter 8 8 8
+velocityjitter 156 156 156
+// fire effect which expands then slows
+effect flac_explode
+notunderwater
+count 12
+type static
+tex 48 55
+color 0x8f0d00 0xff5a00
+size 10 16
+sizeincrease 15
+alpha 128 256 456
+bounce 1.5
+airfriction 12
+liquidfriction 8
+originjitter 8 8 8
+velocityjitter 256 256 256
+
+// smoke
+effect flac_explode
+type alphastatic
+notunderwater
+tex 0 8
+count 10
+size 10 20
+sizeincrease 20
+alpha 500 600 556
+velocityjitter 244 244 244
+airfriction 5
+color 0x000000 0x111111
+bounce 2
+
+// underwater bubbles
+effect flac_explode
+underwater
+count 16
+type bubble
+tex 62 62
+color 0x404040 0x808080
+size 1 2
+alpha 128 256 64
+gravity -0.125
+bounce 1.5
+liquidfriction 0.25
+originjitter 16 16 16
+velocityjitter 96 96 96
+// bouncing sparks
+effect flac_explode
+notunderwater
+count 8
+type spark
+color 0x903010 0xFFD030
+size 2 2
+tex 40 40
+alpha 256 256 384
+gravity 1
+airfriction 0.2
+bounce 1.5
+liquidfriction 0.8
+velocityoffset 0 0 80
+velocityjitter 256 256 256
+
+
+

Modified: trunk/data/qcsrc/server/w_seeker.qc
===================================================================
--- trunk/data/qcsrc/server/w_seeker.qc	2008-11-28 08:29:34 UTC (rev 5137)
+++ trunk/data/qcsrc/server/w_seeker.qc	2008-11-28 09:52:25 UTC (rev 5138)
@@ -7,7 +7,7 @@
 	vector	org2;
 	float b;
 	org2 = findbetterlocation (self.origin, 12);
-	te_explosion (org2);
+	pointparticles(particleeffectnum("hagar_explode"), org2, '0 0 0', 1);
 
 	b = crandom();
 	if (b<-0.7)
@@ -276,7 +276,7 @@
 	//    return;
 
 	org2 = findbetterlocation (self.origin, 12);
-	te_explosion (org2);
+	pointparticles(particleeffectnum("hagar_explode"), org2, '0 0 0', 1);
 
 	b = crandom();
 	if (b<-0.7)
@@ -378,7 +378,7 @@
 	vector	org2;
 	float b;
 	org2 = findbetterlocation (self.origin, 12);
-	te_explosion (org2);
+	pointparticles(particleeffectnum("flac_explode"), org2, '0 0 0', 1);
 
 	b = crandom();
 	if (b<-0.7)




More information about the nexuiz-commits mailing list