<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>D3scene - Deprotections / Map Cheating</title>
		<link>http://www.d3scene.com/forum/</link>
		<description>Within this forum you find guides and tutorials how to properly deprotect and add cheats to your Warcraft 3 maps. If you need help with unprotecting then then you can find help here.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 06:49:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.d3scene.com/forum/images/bullet/misc/rss.jpg</url>
			<title>D3scene - Deprotections / Map Cheating</title>
			<link>http://www.d3scene.com/forum/</link>
		</image>
		<item>
			<title>removing single player restriction</title>
			<link>http://www.d3scene.com/forum/deprotections-map-cheating/33464-removing-single-player-restriction.html</link>
			<pubDate>Sat, 07 Nov 2009 09:30:53 GMT</pubDate>
			<description><![CDATA[Nope, i still can't find it. I read the sticky about how to remove that and i have no luck what so ever. I have the map "True Chaos RPG...]]></description>
			<content:encoded><![CDATA[<div>Nope, i still can't find it. I read the sticky about how to remove that and i have no luck what so ever. I have the map &quot;True Chaos RPG v0.11aprotected&quot; i got it from epicwar.com.<br />
<br />
hi i have a problem. i read some forums and posts about hacking and deprotecting maps but i havn't really came across a forum or post that really tells me how to remove the single player restriction. now i may be a blind person for missing this but can someone help me please? =s</div>

]]></content:encoded>
			<category domain="http://www.d3scene.com/forum/deprotections-map-cheating/">Deprotections / Map Cheating</category>
			<dc:creator>vietbucky</dc:creator>
			<guid isPermaLink="true">http://www.d3scene.com/forum/deprotections-map-cheating/33464-removing-single-player-restriction.html</guid>
		</item>
		<item>
			<title>Question about triggers</title>
			<link>http://www.d3scene.com/forum/deprotections-map-cheating/33282-question-about-triggers.html</link>
			<pubDate>Fri, 30 Oct 2009 14:36:21 GMT</pubDate>
			<description><![CDATA[Hi i deprotected a new map vampirism speed 1.48d, because it isn't an official version. Then i found the added cheats. Can some1 help me gow to get...]]></description>
			<content:encoded><![CDATA[<div>Hi i deprotected a new map vampirism speed 1.48d, because it isn't an official version. Then i found the added cheats. Can some1 help me gow to get them activated, because i'm not very good at jasscraft^^<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">function CheatOn takes nothing returns nothing<br />
&nbsp; &nbsp; set CheatUse[GetPlayerId(GetTriggerPlayer())] = true<br />
endfunction<br />
function CheatGold takes nothing returns nothing<br />
&nbsp; &nbsp; local string sNumber = SubStringBJ(GetEventPlayerChatString(), 9, 10)<br />
&nbsp; &nbsp; local string sAmount = SubStringBJ(GetEventPlayerChatString(), 12, 18)<br />
&nbsp; &nbsp; local integer iNumber<br />
&nbsp; &nbsp; local integer iAmount<br />
&nbsp; &nbsp; local integer x = 0<br />
&nbsp; &nbsp; if(CheatUse[GetPlayerId(GetTriggerPlayer())])then<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(sNumber == &quot;me&quot;)then&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set iNumber = GetPlayerId(GetTriggerPlayer())<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set iNumber = S2I(sNumber) - 1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; endif<br />
&nbsp; &nbsp; &nbsp; &nbsp; set iAmount = S2I(sAmount)<br />
&nbsp; &nbsp; &nbsp; &nbsp; call SetPlayerState(Player(iNumber), PLAYER_STATE_RESOURCE_GOLD, iAmount)<br />
&nbsp; &nbsp; endif<br />
endfunction<br />
function CheatWood takes nothing returns nothing<br />
&nbsp; &nbsp; local string sNumber = SubStringBJ(GetEventPlayerChatString(), 9, 10)<br />
&nbsp; &nbsp; local string sAmount = SubStringBJ(GetEventPlayerChatString(), 12, 18)<br />
&nbsp; &nbsp; local integer iNumber<br />
&nbsp; &nbsp; local integer iAmount<br />
&nbsp; &nbsp; local integer x = 0<br />
&nbsp; &nbsp; if(CheatUse[GetPlayerId(GetTriggerPlayer())])then<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(sNumber == &quot;me&quot;)then&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set iNumber = GetPlayerId(GetTriggerPlayer())<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set iNumber = S2I(sNumber) - 1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; endif<br />
&nbsp; &nbsp; &nbsp; &nbsp; set iAmount = S2I(sAmount)<br />
&nbsp; &nbsp; &nbsp; &nbsp; call SetPlayerState(Player(iNumber), PLAYER_STATE_RESOURCE_LUMBER, iAmount)<br />
&nbsp; &nbsp; endif<br />
endfunction<br />
<br />
function InitVar takes nothing returns nothing<br />
local integer icp = 0<br />
loop<br />
exitwhen icp == 12<br />
&nbsp; &nbsp; set CheatUse[icp] = false<br />
&nbsp; &nbsp; set icp = icp + 1<br />
endloop<br />
endfunction<br />
function InitCheats takes nothing returns nothing<br />
local integer icp<br />
local trigger t<br />
call DoNotSaveReplay()<br />
set t = CreateTrigger()<br />
set icp = 0<br />
loop<br />
exitwhen icp == 12<br />
call TriggerRegisterPlayerChatEvent(t, Player(icp), &quot;qqqeee&quot;, false)<br />
set icp = icp + 1<br />
endloop<br />
call TriggerAddAction(t, function CheatOn)<br />
set t = CreateTrigger()<br />
set icp = 0<br />
loop<br />
exitwhen icp == 12<br />
call TriggerRegisterPlayerChatEvent(t, Player(icp), &quot;setgold &quot;, false)<br />
set icp = icp + 1<br />
endloop<br />
call TriggerAddAction(t, function CheatGold)<br />
set t=CreateTrigger()<br />
set icp = 0<br />
loop<br />
exitwhen icp == 12<br />
call TriggerRegisterPlayerChatEvent(t, Player(icp), &quot;setwood &quot;, false)<br />
set icp = icp + 1<br />
endloop<br />
call TriggerAddAction(t, function CheatWood)<br />
endfunction</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.d3scene.com/forum/deprotections-map-cheating/">Deprotections / Map Cheating</category>
			<dc:creator>Lucarnn</dc:creator>
			<guid isPermaLink="true">http://www.d3scene.com/forum/deprotections-map-cheating/33282-question-about-triggers.html</guid>
		</item>
		<item>
			<title>HELP plz unprotecting map</title>
			<link>http://www.d3scene.com/forum/deprotections-map-cheating/33231-help-plz-unprotecting-map.html</link>
			<pubDate>Wed, 28 Oct 2009 04:29:43 GMT</pubDate>
			<description>i would like some help to unprotect this map. 
  
i was using this program MapUnprotection_by_tschoerk 
  
but i cant seem to point the program to...</description>
			<content:encoded><![CDATA[<div>i would like some help to unprotect this map.<br />
 <br />
i was using this program MapUnprotection_by_tschoerk<br />
 <br />
but i cant seem to point the program to the map.<br />
 <br />
plz simple instruction<br />
 <br />
-----<br />
 <br />
also need help to make it work for 1.24 in <acronym title="Warcraft 3">wc3</acronym> tft if i get to unprotect it.</div>

]]></content:encoded>
			<category domain="http://www.d3scene.com/forum/deprotections-map-cheating/">Deprotections / Map Cheating</category>
			<dc:creator>riftship</dc:creator>
			<guid isPermaLink="true">http://www.d3scene.com/forum/deprotections-map-cheating/33231-help-plz-unprotecting-map.html</guid>
		</item>
	</channel>
</rss>
