<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/wiki/Resource:Blipstreamer/getBlipStreamRadius?action=history&amp;feed=atom</id>
	<title>Resource:Blipstreamer/getBlipStreamRadius - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/wiki/Resource:Blipstreamer/getBlipStreamRadius?action=history&amp;feed=atom"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Resource:Blipstreamer/getBlipStreamRadius&amp;action=history"/>
	<updated>2026-04-04T12:23:34Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Resource:Blipstreamer/getBlipStreamRadius&amp;diff=18270&amp;oldid=prev</id>
		<title>Talidan: Resource:Spawnmanager/getBlipStreamRadius moved to Resource:Blipstreamer/getBlipStreamRadius</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Resource:Blipstreamer/getBlipStreamRadius&amp;diff=18270&amp;oldid=prev"/>
		<updated>2009-01-24T02:21:51Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/Resource:Spawnmanager/getBlipStreamRadius&quot; class=&quot;mw-redirect&quot; title=&quot;Resource:Spawnmanager/getBlipStreamRadius&quot;&gt;Resource:Spawnmanager/getBlipStreamRadius&lt;/a&gt; moved to &lt;a href=&quot;/wiki/Resource:Blipstreamer/getBlipStreamRadius&quot; title=&quot;Resource:Blipstreamer/getBlipStreamRadius&quot;&gt;Resource:Blipstreamer/getBlipStreamRadius&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 02:21, 24 January 2009&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key wiki-wiki_dev_:diff::1.12:old-18146:rev-18270 --&gt;
&lt;/table&gt;</summary>
		<author><name>Talidan</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Resource:Blipstreamer/getBlipStreamRadius&amp;diff=18146&amp;oldid=prev</id>
		<title>Talidan: New page: __NOTOC__  {{Server client function}} This function retrieves the current stream radius of a blip, or whether its streamable at all  ==Syntax==  &lt;syntaxhighlight lang=&quot;lua&quot;&gt; bool getBlipStreamRadius ( el...</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Resource:Blipstreamer/getBlipStreamRadius&amp;diff=18146&amp;oldid=prev"/>
		<updated>2009-01-15T19:26:02Z</updated>

		<summary type="html">&lt;p&gt;New page: __NOTOC__  {{Server client function}} This function retrieves the current stream radius of a blip, or whether its streamable at all  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool getBlipStreamRadius ( el...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Server client function}}&lt;br /&gt;
This function retrieves the current stream radius of a blip, or whether its streamable at all&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool getBlipStreamRadius ( element blip )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments===&lt;br /&gt;
*'''blip''': The blip in which you wish to retrieve the stream status for&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a float representing the current radius for streaming, or ''false'' if streaming was not enabled.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example outputs your own blip's stream radius&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function outputMyStreamRadius(player)&lt;br /&gt;
&lt;br /&gt;
	--Destroy any old attached blips&lt;br /&gt;
	for k,element in ipairs(getAttachedElements(source)) do&lt;br /&gt;
		if getElementType(element) == &amp;quot;blip&amp;quot; then&lt;br /&gt;
			local streamRadius = call(getResourceFromName&amp;quot;blipstreamer&amp;quot;,&amp;quot;getBlipStreamRadius&amp;quot;,blip)&lt;br /&gt;
			if streamRadius then&lt;br /&gt;
				outputChatBox ( &amp;quot;Stream radius is: &amp;quot;..streamRadius )&lt;br /&gt;
			else&lt;br /&gt;
				outputChatBox ( &amp;quot;No stream radius!&amp;quot; )&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	--Create a new blip and make it streamable&lt;br /&gt;
	local blip = createBlipAttachedTo ( source, 0, 1 )&lt;br /&gt;
	)&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler ( &amp;quot;mystreamradius&amp;quot;, outputMyStreamRadius )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Talidan</name></author>
	</entry>
</feed>