<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Teeworlds Forum — Script to workaorund big tilesets...]]></title>
		<link>https://www.teeworlds.com/forum/viewtopic.php?id=1381</link>
		<atom:link href="https://www.teeworlds.com/forum/extern.php?action=feed&amp;tid=1381&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Script to workaorund big tilesets....]]></description>
		<lastBuildDate>Fri, 02 May 2008 22:01:30 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Script to workaorund big tilesets...]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=11493#p11493</link>
			<description><![CDATA[<p>I just fixed the script a little, while the grid made a perfect reassembly in the tile view, the game yet reassembles differently in the ingame view? Well right now it still isn&#039;t perfect, and you get missing lines, but after the script applied it at least betters the situation quite somewhat...</p>]]></description>
			<author><![CDATA[null@example.com (catpaw)]]></author>
			<pubDate>Fri, 02 May 2008 22:01:30 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=11493#p11493</guid>
		</item>
		<item>
			<title><![CDATA[Re: Script to workaorund big tilesets...]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=11492#p11492</link>
			<description><![CDATA[<div class="quotebox"><cite>shmafoozius wrote:</cite><blockquote><p>(I&#039;m using Photoshop, so the script&#039;s of no use for me).</p></blockquote></div><p>Gimp is a free download, so the &quot;no-use&quot;, is just a &quot;i don&#039;t want to&quot; <img src="https://www.teeworlds.com/forum/img/smilies/smile.png" alt="smile" /> Gimp is *really* free in contrast the&nbsp; photoshop 90% of people use is pirated...</p>]]></description>
			<author><![CDATA[null@example.com (catpaw)]]></author>
			<pubDate>Fri, 02 May 2008 22:00:22 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=11492#p11492</guid>
		</item>
		<item>
			<title><![CDATA[Re: Script to workaorund big tilesets...]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=11487#p11487</link>
			<description><![CDATA[<p>Uh... so we have to use 63x63 tiles in 1024x1024 to get it working in Teeworlds? (I&#039;m using Photoshop, so the script&#039;s of no use for me).<br />This SOOOOO needs bo be fixed.</p>]]></description>
			<author><![CDATA[null@example.com (shmafoozius)]]></author>
			<pubDate>Fri, 02 May 2008 21:24:36 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=11487#p11487</guid>
		</item>
		<item>
			<title><![CDATA[Re: Script to workaorund big tilesets...]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=11485#p11485</link>
			<description><![CDATA[<p>nice nice <img src="https://www.teeworlds.com/forum/img/smilies/wink.png" alt="wink" /></p>]]></description>
			<author><![CDATA[null@example.com (GSGDani)]]></author>
			<pubDate>Fri, 02 May 2008 21:06:44 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=11485#p11485</guid>
		</item>
		<item>
			<title><![CDATA[Script to workaorund big tilesets...]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=11484#p11484</link>
			<description><![CDATA[<p>The following gimp script-fu will workaround the teewars editor taking pixels from your images:</p><div class="quotebox"><blockquote><p>(define (catpaw-magic img drawable)<br />&nbsp; (gimp-undo-push-group-start img)</p><p>&nbsp; (define b -1)<br />&nbsp; (set! b (+ b 64)) <br />&nbsp; &nbsp; (while (&lt; b 1024)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-rect-select img b 0 1024 1024 REPLACE FALSE 0)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-edit-cut drawable)<br />&nbsp; &nbsp;&nbsp; &nbsp;(let ((selfloat (car (gimp-edit-paste drawable FALSE))))<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-layer-set-offsets selfloat (+ b 1) 0)<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-floating-sel-anchor selfloat)<br />&nbsp; &nbsp;&nbsp; &nbsp;)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-rect-select img (+ b 1) 0 1 1024 REPLACE FALSE 0)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-edit-copy drawable)<br />&nbsp; &nbsp;&nbsp; &nbsp;(let ((selfloat (car (gimp-edit-paste drawable FALSE))))<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-layer-set-offsets selfloat b 0)<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-floating-sel-anchor selfloat)<br />&nbsp; &nbsp;&nbsp; &nbsp;)<br />&nbsp; &nbsp;&nbsp; &nbsp;(set! b (+ b 64)) <br />&nbsp; )<br />&nbsp; (set! b -1)<br />&nbsp; (set! b (+ b 64)) <br />&nbsp; &nbsp; (while (&lt; b 1024)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-rect-select img 0 b 1024 1024 REPLACE FALSE 0)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-edit-cut drawable)<br />&nbsp; &nbsp;&nbsp; &nbsp;(let ((selfloat (car (gimp-edit-paste drawable FALSE))))<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-layer-set-offsets selfloat 0 (+ b 1))<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-floating-sel-anchor selfloat)<br />&nbsp; &nbsp;&nbsp; &nbsp;)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-rect-select img 0 (+ b 1) 1024 1 REPLACE FALSE 0)<br />&nbsp; &nbsp;&nbsp; &nbsp;(gimp-edit-copy drawable)<br />&nbsp; &nbsp;&nbsp; &nbsp;(let ((selfloat (car (gimp-edit-paste drawable FALSE))))<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-layer-set-offsets selfloat 0 b)<br />&nbsp; &nbsp;&nbsp; &nbsp; (gimp-floating-sel-anchor selfloat)<br />&nbsp; &nbsp;&nbsp; &nbsp;)<br />&nbsp; &nbsp;&nbsp; &nbsp;(set! b (+ b 64)) <br />&nbsp; )<br />&nbsp; (gimp-undo-push-group-end img)<br />&nbsp; (gimp-displays-flush))</p><p>(script-fu-register &quot;catpaw-magic&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Catpaw Magic&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Bla 64&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Catpaw&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Catpaw&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;2008-05-02&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;RGB*, GRAY*&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SF-IMAGE &quot;Image&quot; 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SF-DRAWABLE &quot;Layer&quot; 0)<br />(script-fu-menu-register &quot;catpaw-magic&quot;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;&lt;Image&gt;/Filters/Distorts&quot;)</p></blockquote></div><p>On unix systems put this in your &quot;~/.gimp-2.4/scripts&quot; folder, windows I don&#039;t know.</p><p>It will add the script &quot;catpaw-magic&quot; into Filters-&gt;Distorts-&gt;&quot;Catpaw Magic&quot; execute it, and it will add a blank line every 64 pixels, so when the teewars editor cuts it away, you are again where you started.</p><p>Oh yes, the image needs exact to be 1024x1024 in size. Will not guarantee for any workings and non-crashes on other image sizes!</p>]]></description>
			<author><![CDATA[null@example.com (catpaw)]]></author>
			<pubDate>Fri, 02 May 2008 21:05:29 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=11484#p11484</guid>
		</item>
	</channel>
</rss>
