<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.svencoop.com/index.php?action=history&amp;feed=atom&amp;title=TE_TRACER</id>
	<title>TE TRACER - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.svencoop.com/index.php?action=history&amp;feed=atom&amp;title=TE_TRACER"/>
	<link rel="alternate" type="text/html" href="https://wiki.svencoop.com/index.php?title=TE_TRACER&amp;action=history"/>
	<updated>2026-05-16T06:12:30Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://wiki.svencoop.com/index.php?title=TE_TRACER&amp;diff=1315&amp;oldid=prev</id>
		<title>Outerbeast: Created page with &quot;Standard bullet tracer effect.  Colour of this effect is determined by tracerred, tracergreen and tracerblue cvars, opacity by traceralpha, speed by tracerspeed, distance from...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.svencoop.com/index.php?title=TE_TRACER&amp;diff=1315&amp;oldid=prev"/>
		<updated>2025-04-05T19:01:11Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Standard bullet tracer effect.  Colour of this effect is determined by tracerred, tracergreen and tracerblue cvars, opacity by traceralpha, speed by tracerspeed, distance from...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Standard bullet tracer effect.&lt;br /&gt;
&lt;br /&gt;
Colour of this effect is determined by tracerred, tracergreen and tracerblue cvars, opacity by traceralpha, speed by tracerspeed, distance from the startpoint where the tracer will appear by traceroffset and finally length by tracerlength cvar.&lt;br /&gt;
&lt;br /&gt;
See also [[TE_USERTRACER]] effect.&lt;br /&gt;
&lt;br /&gt;
[[File:TE_TRACER.gif|frame]]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
void te_tracer(Vector start, Vector end, &lt;br /&gt;
	NetworkMessageDest msgType=MSG_BROADCAST, edict_t@ dest=null)&lt;br /&gt;
{&lt;br /&gt;
	NetworkMessage m(msgType, NetworkMessages::SVC_TEMPENTITY, dest);&lt;br /&gt;
	m.WriteByte(TE_TRACER);&lt;br /&gt;
	m.WriteCoord(start.x);&lt;br /&gt;
	m.WriteCoord(start.y);&lt;br /&gt;
	m.WriteCoord(start.z);&lt;br /&gt;
	m.WriteCoord(end.x);&lt;br /&gt;
	m.WriteCoord(end.y);&lt;br /&gt;
	m.WriteCoord(end.z);&lt;br /&gt;
	m.End();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting]]&lt;/div&gt;</summary>
		<author><name>Outerbeast</name></author>
	</entry>
</feed>