<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Teeworlds Forum — [MOD] TeeWorlds+ [1.0]]]></title>
		<link>https://www.teeworlds.com/forum/viewtopic.php?id=4358</link>
		<atom:link href="https://www.teeworlds.com/forum/extern.php?action=feed&amp;tid=4358&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in [MOD] TeeWorlds+ [1.0].]]></description>
		<lastBuildDate>Wed, 25 Aug 2010 20:32:58 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=70921#p70921</link>
			<description><![CDATA[<p>I dont know if im allowed but i would like to post an up-date of the windows server ^^</p><h5>Changed:</h5><div class="codebox"><pre><code>sv_rcon_password        to  sv_rcon_password_admin
sv_referee_password     to  sv_rcon_password_referee
Changed the broadcast, now only: &quot;About: /info&quot; is shown. The standart broadcast is toooo long, so i and many others say. ^^
Bans are now in seconds and minutes</code></pre></div><br /><h5>Addet:</h5><div class="codebox"><pre><code>sv_reconnect_time   //bans people when they leave to avoid to be frozen or getting kicked.
sv_max_connections   //to prevent multiclient or votebot
sv_rcon_tries   //bans a player after the setted value to prevent server crash
sv_rcon_tries_bantime   
sv_netmsg_limit   //bans a player when he sends to many messages to the server to crash it
sv_netmsg_bantime
sv_welcome_msg   //sends the player a welcome-message</code></pre></div><br /><h5>Fixed:</h5><div class="codebox"><pre><code>Too long messages   //chat message what is longer than 300 characters to &quot;hide&quot; the chat
Conless Packet   //server has crashed when a connless packet with the size 1-6 arrived
Kick/Ban ID 16  //server probably crashes when this id gets kicked/banned?</code></pre></div><h5>Other:</h5><div class="codebox"><pre><code>You can add bans into the .cfg file
2x the same addvote isnt allowed</code></pre></div><p>P.s. Sry for my bad english <img src="https://www.teeworlds.com/forum/img/smilies/wink.png" alt="wink" /> ^^</p>]]></description>
			<author><![CDATA[null@example.com (Phoenix2012)]]></author>
			<pubDate>Wed, 25 Aug 2010 20:32:58 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=70921#p70921</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=70918#p70918</link>
			<description><![CDATA[<p>in freeze ctf when a teamfriend melt you, you explode and respawn (reborn).... <br />the option to contiune from you did freezed, no work....</p>]]></description>
			<author><![CDATA[null@example.com (CarmineZ)]]></author>
			<pubDate>Wed, 25 Aug 2010 19:18:48 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=70918#p70918</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=70904#p70904</link>
			<description><![CDATA[<p>awesome mod now i can make a streetwars server <img src="https://www.teeworlds.com/forum/img/smilies/big_smile.png" alt="big_smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Snow-Kitty)]]></author>
			<pubDate>Wed, 25 Aug 2010 16:12:25 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=70904#p70904</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=65681#p65681</link>
			<description><![CDATA[<p>Hey i need some help today <img src="https://www.teeworlds.com/forum/img/smilies/smile.png" alt="smile" /><br />I try to mod a little the great job of Tom&nbsp; by adding an option for use only hook...<br />First i just replace in gamecontroller.cpp some lines of code : </p><div class="codebox"><pre><code>chr-&gt;weapons[WEAPON_RIFLE].got = 1;
chr-&gt;weapons[WEAPON_RIFLE].ammo =-1;</code></pre></div><p>with these :</p><div class="codebox"><pre><code>chr-&gt;weapons[WEAPON_HAMMER].got = 1;
chr-&gt;weapons[WEAPON_HAMMER].ammo = -1;</code></pre></div><p>Then i realised that i could just delete the ammo of rifle: </p><div class="codebox"><pre><code>chr-&gt;weapons[WEAPON_RIFLE].got = 1;
        chr-&gt;weapons[WEAPON_RIFLE].ammo =0;</code></pre></div><p>It was working (2 methods work) but&nbsp; i always need to restart the server for changing it...<br />I make a new variable </p><div class="codebox"><pre><code>int rifle=0</code></pre></div><p> and i replace 0 (ammo) with rifle so when I change the value of rifle it changed the ammo and the possibility to use or not the rifle...<br />But it don&#039;t resolve my problem, so i decided to make a command avaliable in F2 that could change the value of rifle...<br />I don&#039;t find it so i ask for your help.<br />P.S. I tried too to use the instagib variable but i don&#039;t find the command for turn it on/off<br />If i could i would do : <br /></p><div class="codebox"><pre><code>if(is_instagib())
    {
        chr-&gt;weapons[WEAPON_RIFLE].got = 1;
        chr-&gt;weapons[WEAPON_RIFLE].ammo =0;
    }
    else
    {
        chr-&gt;weapons[WEAPON_HAMMER].got = 1;
        chr-&gt;weapons[WEAPON_HAMMER].ammo = 0;
    }</code></pre></div><p>P.P.S. Sorry for my english xD<br />P.P.P.S. I searched very much so don&#039;t just say &quot;There is a search command&quot; I post here because i really need help...<br />Yea, everyone has to begin one day...</p>]]></description>
			<author><![CDATA[null@example.com (Milipi)]]></author>
			<pubDate>Sat, 22 May 2010 20:28:50 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=65681#p65681</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=61301#p61301</link>
			<description><![CDATA[<p>T4b, a very usefull tool is &quot;unp&quot; (unpack), it recognizes the archiv type automatically, so you just need to type &quot;unp teeworlds+_1.0_linux-x86.tar.bz2&quot;. It should be available in your repositories.</p>]]></description>
			<author><![CDATA[null@example.com (erd)]]></author>
			<pubDate>Sat, 20 Mar 2010 23:27:20 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=61301#p61301</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=61294#p61294</link>
			<description><![CDATA[<p>That works.</p>]]></description>
			<author><![CDATA[null@example.com (T4b)]]></author>
			<pubDate>Sat, 20 Mar 2010 21:51:49 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=61294#p61294</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=61289#p61289</link>
			<description><![CDATA[<p>Rename it to &quot;teeworlds.tar.gz&quot; and try with:<br />tar -xvf teeworlds.tar.gz</p><p>Might work, I haven&#039;t tried, and I won&#039;t do it.</p>]]></description>
			<author><![CDATA[null@example.com (Kottizen)]]></author>
			<pubDate>Sat, 20 Mar 2010 19:22:32 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=61289#p61289</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=61286#p61286</link>
			<description><![CDATA[<p>When I try to unpack the linux version:</p><p>tar xkvjf teeworlds+_1.0_linux-x86.tar.bz2<br />bzip2: (stdin) is not a bzip2 file.<br />tar: Child returned status 2<br />tar: Beende mit Fehlerstatus aufgrund vorheriger Fehler</p><p>Could someone upload a valid file?</p>]]></description>
			<author><![CDATA[null@example.com (T4b)]]></author>
			<pubDate>Sat, 20 Mar 2010 18:41:45 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=61286#p61286</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=60993#p60993</link>
			<description><![CDATA[<p>Inofficial but fast as hell download mirror, directly downloadable:<br /><a href="http://teeworlds.secu.in/twplus">http://teeworlds.secu.in/twplus</a></p>]]></description>
			<author><![CDATA[null@example.com (Secu.in)]]></author>
			<pubDate>Sun, 14 Mar 2010 22:18:57 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=60993#p60993</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=60615#p60615</link>
			<description><![CDATA[<p>Yep, in common Teeworlds-style, there still are a few bugs...<br />Whenever I find some time, I might fix them.</p>]]></description>
			<author><![CDATA[null@example.com (Tom94)]]></author>
			<pubDate>Tue, 09 Mar 2010 07:14:12 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=60615#p60615</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=60492#p60492</link>
			<description><![CDATA[<p>bug: if you damage yourself with rocket, it can do up to 6&nbsp; damage whereas normal does only 3.</p>]]></description>
			<author><![CDATA[null@example.com (analog)]]></author>
			<pubDate>Sat, 06 Mar 2010 20:42:09 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=60492#p60492</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=59048#p59048</link>
			<description><![CDATA[<div class="quotebox"><cite>Redfoxnet wrote:</cite><blockquote><p>When I start compiling the client part with your modified files, the compilation fails with this error. <a href="http://pastebin.org/85993">http://pastebin.org/85993</a> Can you fix this?</p></blockquote></div><p>The src has several things changed in the engine making it impossible to build the client.<br />As there isn&#039;t any custom client of TeeWorlds+, it shouldn&#039;t be a problem. <img src="https://www.teeworlds.com/forum/img/smilies/wink.png" alt="wink" /></p>]]></description>
			<author><![CDATA[null@example.com (Tom94)]]></author>
			<pubDate>Sat, 06 Feb 2010 07:26:02 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=59048#p59048</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=58976#p58976</link>
			<description><![CDATA[<p>I wrote ebuild for gentoo linux with the&nbsp; Teeworlds+ patch in USE flags.</p><p>You can get it here <a href="https://sudouser.ru/pub/~redfoxnet/teeworlds/teeworlds+/1.0/ebuild/">https://sudouser.ru/pub/~redfoxnet/teew … .0/ebuild/</a></p>]]></description>
			<author><![CDATA[null@example.com (Redfoxnet)]]></author>
			<pubDate>Fri, 05 Feb 2010 06:02:00 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=58976#p58976</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=58910#p58910</link>
			<description><![CDATA[<p>When I start compiling the client part with your modified files, the compilation fails with this error. <a href="http://pastebin.org/85993">http://pastebin.org/85993</a> Can you fix this?</p>]]></description>
			<author><![CDATA[null@example.com (Redfoxnet)]]></author>
			<pubDate>Wed, 03 Feb 2010 20:20:01 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=58910#p58910</guid>
		</item>
		<item>
			<title><![CDATA[Re: [MOD] TeeWorlds+ [1.0]]]></title>
			<link>https://www.teeworlds.com/forum/viewtopic.php?pid=58888#p58888</link>
			<description><![CDATA[<div class="quotebox"><cite>Tom94 wrote:</cite><blockquote><p>Thanks, edited my post. <img src="https://www.teeworlds.com/forum/img/smilies/wink.png" alt="wink" /></p></blockquote></div><p>I like your mod, and I can easily compile the binaries for future releases. Also, I can store the files of your mod (or another teeworlds files) on my server to download them directly, without any captchas. Like this <a href="https://sudouser.ru/pub/~redfoxnet/teeworlds/teeworlds+/">https://sudouser.ru/pub/~redfoxnet/teew … eeworlds+/</a> . Just say, if your want it.</p>]]></description>
			<author><![CDATA[null@example.com (Redfoxnet)]]></author>
			<pubDate>Wed, 03 Feb 2010 14:28:04 +0000</pubDate>
			<guid>https://www.teeworlds.com/forum/viewtopic.php?pid=58888#p58888</guid>
		</item>
	</channel>
</rss>
