13 //Draw_CylindricLine(self.fx_start, self.fx_end, self.fx_with, self.fx_texture, 0, time * 3, '1 1 1', 0.7, DRAWFLAG_ADDITIVE);
14 Draw_CylindricLine(self.fx_start, self.fx_end, self.fx_with, self.fx_texture, (self.fx_with/256), 0, '1 1 1', 1, DRAWFLAG_ADDITIVE);
17 void b_make(vector s,vector e, string t,float l,float z)
26 b.nextthink = time + l;
29 //b.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP;
33 void cl_effetcs_lightningarc(vector from, vector to,float seglength,float drifts,float drifte,float branchfactor,float branchfactor_add)
35 vector direction,dirnew, pos, pos_l;
36 float length, steps, steplength, i,drift;
38 length = vlen(from - to);
42 steps = floor(length / seglength);
45 te_lightning1(world,from,to);
49 steplength = length / steps;
50 direction = normalize(to - from);
52 if(length > seglength)
54 for(i = 1; i < steps; i += 1)
56 drift = drifts * (1 - (i / steps)) + drifte * (i / steps);
57 dirnew = normalize(direction * (1 - drift) + randomvec() * drift);
58 pos = pos_l + dirnew * steplength;
59 te_lightning1(world,pos_l,pos);
60 //b_make(pos_l, pos,"particles/lightning2",0.25,64);
61 if(random() < branchfactor)
62 cl_effetcs_lightningarc(pos, pos + (dirnew * length * 0.25),seglength,drifts,drifte,min(branchfactor + branchfactor_add,1),branchfactor_add);
66 te_lightning1(world,pos_l,to);
67 //b_make(pos_l, to,"particles/lightning2",0.25,64);
71 te_lightning1(world,from,to);
72 //b_make(from, to,"particles/lightning2",0.25,64);
76 void Net_ReadLightningarc()
80 from_x = ReadCoord(); from_y = ReadCoord(); from_z = ReadCoord();
81 to_x = ReadCoord(); to_y = ReadCoord(); to_z = ReadCoord();
83 if(cvar("cl_effects_lightningarc_simple"))
85 te_lightning1(world,from,to);
89 float seglength, drifts, drifte, branchfactor, branchfactor_add;
91 seglength = cvar("cl_effects_lightningarc_segmentlength");
92 drifts = cvar("cl_effects_lightningarc_drift_start");
93 drifte = cvar("cl_effects_lightningarc_drift_end");
94 branchfactor = cvar("cl_effects_lightningarc_branchfactor_start");
95 branchfactor = cvar("cl_effects_lightningarc_branchfactor_add");
97 cl_effetcs_lightningarc(from,to,seglength,drifts,drifte,branchfactor,branchfactor_add);