<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: CFF Explorer Script	</title>
	<atom:link href="https://ntcore.com/cff-explorer-script/feed/" rel="self" type="application/rss+xml" />
	<link>https://ntcore.com/cff-explorer-script/</link>
	<description></description>
	<lastBuildDate>Sun, 30 Sep 2007 22:34:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: I-Chat		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-49</link>

		<dc:creator><![CDATA[I-Chat]]></dc:creator>
		<pubDate>Sun, 30 Sep 2007 22:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-49</guid>

					<description><![CDATA[this sounds realy nice  &lt;br/&gt;&lt;br/&gt;ase with the reverse of this code you allready kinda did our work for us LOL - &lt;br/&gt;&lt;br/&gt;instead of one bitmap to all file -  we use all bitmaps to one file  with the current  reshacker with had to include each file in the script  and when for example microsoft added a resource or changes one  whe had to completely re-touch the script ...  now it would just make us  rename a single bmp file  or add one ...  &lt;br/&gt;&lt;br/&gt;this wil make life so mutch easier if some guy wants to create his own custom package...]]></description>
			<content:encoded><![CDATA[<p>this sounds realy nice  </p>
<p>ase with the reverse of this code you allready kinda did our work for us LOL &#8211; </p>
<p>instead of one bitmap to all file &#8211;  we use all bitmaps to one file  with the current  reshacker with had to include each file in the script  and when for example microsoft added a resource or changes one  whe had to completely re-touch the script &#8230;  now it would just make us  rename a single bmp file  or add one &#8230;  </p>
<p>this wil make life so mutch easier if some guy wants to create his own custom package&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ntoskrnl		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-48</link>

		<dc:creator><![CDATA[Ntoskrnl]]></dc:creator>
		<pubDate>Wed, 26 Sep 2007 21:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-48</guid>

					<description><![CDATA[Yes, of course. Thank you!&lt;br/&gt;&lt;br/&gt;Yesterday I was working a lot on the scripting and wrote the AddResource function which is almost ready. This doesn&#039;t sound like a lot, but it was a lot of stuff to write. I implemented handles and other stuff in the scripting.&lt;br/&gt;&lt;br/&gt;The possible syntaxes for this function are:&lt;br/&gt;&lt;br/&gt;AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId)&lt;br/&gt;AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId, ResNameOrId)&lt;br/&gt;AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId, Language)&lt;br/&gt;&lt;br/&gt;Which basically means that you could call this function in a lot of ways. The first two parameters can be file names or handles, e.g.:&lt;br/&gt;&lt;br/&gt;AddResource(&quot;ciao.exe&quot;, &quot;res.bmp&quot;, RT_BITMAP)&lt;br/&gt;&lt;br/&gt;or:&lt;br/&gt;&lt;br/&gt;filehandle = OpenFile(&quot;ciao.exe&quot;)&lt;br/&gt;AddResource(filehandle, &quot;res.bmp&quot;, RT_BITMAP)&lt;br/&gt;&lt;br/&gt;The return value of this function is either true or false.&lt;br/&gt;&lt;br/&gt;Here&#039;s a little script I wrote yesterday:&lt;br/&gt;&lt;br/&gt;filename = GetOpenFile(&quot;Select a PE...&quot;,  &quot;All\n*.*\nexe\n*.exe\ndll\n*.dll\n&quot;)&lt;br/&gt;&lt;br/&gt;if filename == nil then&lt;br/&gt; return&lt;br/&gt;end&lt;br/&gt;&lt;br/&gt;resname = GetOpenFile(&quot;Select a bitmap...&quot;,  &quot;bmp\n*.bmp\n&quot;)&lt;br/&gt;&lt;br/&gt;if resname == nil then&lt;br/&gt; return&lt;br/&gt;end&lt;br/&gt;&lt;br/&gt;bRet = AddResource(filename, resname, RT_BITMAP)&lt;br/&gt;&lt;br/&gt;if bRet == true then&lt;br/&gt; MsgBox(&quot;Resource Added!&quot;, &quot;MyScript&quot;, MB_ICONINFORMATION)&lt;br/&gt;else&lt;br/&gt; MsgBox(&quot;Couldn&#039;t add resource.&quot;, &quot;MyScript&quot;, MB_ICONERROR)&lt;br/&gt;end&lt;br/&gt;&lt;br/&gt;This script asks for a file, then for a bitmap and then adds the bitmap to the file.&lt;br/&gt;&lt;br/&gt;Or maybe I could add a bitmap to all exes in a given dir chosen by the user, e.g.:&lt;br/&gt;&lt;br/&gt;str = GetDirectory(&quot;Select Directory...&quot;)&lt;br/&gt;&lt;br/&gt;if str then&lt;br/&gt;&lt;br/&gt; reshandle = OpenFile(&quot;res.bmp&quot;)&lt;br/&gt;&lt;br/&gt; hSearchHandle = InitFindFile(str .. &quot;\\*.exe&quot;)&lt;br/&gt;&lt;br/&gt; if hSearchHandle then&lt;br/&gt;  FName = FindFile(hSearchHandle)&lt;br/&gt;&lt;br/&gt;  while FName do&lt;br/&gt;   AddResource(FName, reshandle, RT_BITMAP)&lt;br/&gt;   FName = FindFile(hSearchHandle)&lt;br/&gt;  end&lt;br/&gt; end&lt;br/&gt;end&lt;br/&gt;&lt;br/&gt;Hope you like it.&lt;br/&gt;&lt;br/&gt;Unfortunately I can&#039;t work on it in the next two days. The next step is to write the SaveResource function.]]></description>
			<content:encoded><![CDATA[<p>Yes, of course. Thank you!</p>
<p>Yesterday I was working a lot on the scripting and wrote the AddResource function which is almost ready. This doesn&#8217;t sound like a lot, but it was a lot of stuff to write. I implemented handles and other stuff in the scripting.</p>
<p>The possible syntaxes for this function are:</p>
<p>AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId)<br />AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId, ResNameOrId)<br />AddResource(FileName/Handle, ResName/Handle, ResTypeNameOrId, Language)</p>
<p>Which basically means that you could call this function in a lot of ways. The first two parameters can be file names or handles, e.g.:</p>
<p>AddResource(&#8220;ciao.exe&#8221;, &#8220;res.bmp&#8221;, RT_BITMAP)</p>
<p>or:</p>
<p>filehandle = OpenFile(&#8220;ciao.exe&#8221;)<br />AddResource(filehandle, &#8220;res.bmp&#8221;, RT_BITMAP)</p>
<p>The return value of this function is either true or false.</p>
<p>Here&#8217;s a little script I wrote yesterday:</p>
<p>filename = GetOpenFile(&#8220;Select a PE&#8230;&#8221;,  &#8220;All\n*.*\nexe\n*.exe\ndll\n*.dll\n&#8221;)</p>
<p>if filename == nil then<br /> return<br />end</p>
<p>resname = GetOpenFile(&#8220;Select a bitmap&#8230;&#8221;,  &#8220;bmp\n*.bmp\n&#8221;)</p>
<p>if resname == nil then<br /> return<br />end</p>
<p>bRet = AddResource(filename, resname, RT_BITMAP)</p>
<p>if bRet == true then<br /> MsgBox(&#8220;Resource Added!&#8221;, &#8220;MyScript&#8221;, MB_ICONINFORMATION)<br />else<br /> MsgBox(&#8220;Couldn&#8217;t add resource.&#8221;, &#8220;MyScript&#8221;, MB_ICONERROR)<br />end</p>
<p>This script asks for a file, then for a bitmap and then adds the bitmap to the file.</p>
<p>Or maybe I could add a bitmap to all exes in a given dir chosen by the user, e.g.:</p>
<p>str = GetDirectory(&#8220;Select Directory&#8230;&#8221;)</p>
<p>if str then</p>
<p> reshandle = OpenFile(&#8220;res.bmp&#8221;)</p>
<p> hSearchHandle = InitFindFile(str .. &#8220;\\*.exe&#8221;)</p>
<p> if hSearchHandle then<br />  FName = FindFile(hSearchHandle)</p>
<p>  while FName do<br />   AddResource(FName, reshandle, RT_BITMAP)<br />   FName = FindFile(hSearchHandle)<br />  end<br /> end<br />end</p>
<p>Hope you like it.</p>
<p>Unfortunately I can&#8217;t work on it in the next two days. The next step is to write the SaveResource function.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: I-Chat		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-47</link>

		<dc:creator><![CDATA[I-Chat]]></dc:creator>
		<pubDate>Wed, 26 Sep 2007 21:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-47</guid>

					<description><![CDATA[did you get my contact details????]]></description>
			<content:encoded><![CDATA[<p>did you get my contact details????</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ntoskrnl		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-46</link>

		<dc:creator><![CDATA[Ntoskrnl]]></dc:creator>
		<pubDate>Tue, 25 Sep 2007 13:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-46</guid>

					<description><![CDATA[Hi there,&lt;br/&gt;&lt;br/&gt;I can&#039;t see your email from your profile, could u write it to me?&lt;br/&gt;&lt;br/&gt;I&#039;m asking for it because I decided to send you as soon as possible a first version of the cff with the AddResource command (deleting resources is much easier). So, as I said, I&#039;m started working on it today, as soon as I finish I&#039;ll send you the exe to try.&lt;br/&gt;&lt;br/&gt;There is still a lot to do, and as I said I don&#039;t think I can give you a complete scripting in less than 2 weeks.]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>I can&#8217;t see your email from your profile, could u write it to me?</p>
<p>I&#8217;m asking for it because I decided to send you as soon as possible a first version of the cff with the AddResource command (deleting resources is much easier). So, as I said, I&#8217;m started working on it today, as soon as I finish I&#8217;ll send you the exe to try.</p>
<p>There is still a lot to do, and as I said I don&#8217;t think I can give you a complete scripting in less than 2 weeks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: I-Chat		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-45</link>

		<dc:creator><![CDATA[I-Chat]]></dc:creator>
		<pubDate>Mon, 24 Sep 2007 20:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-45</guid>

					<description><![CDATA[update:  many of the guys interested in this project urge you to setup a paypall account when releasing this patcher,   &lt;br/&gt;&lt;br/&gt;Needless to say that this feature seems to be what people REALY want and need... &lt;br/&gt;&lt;br/&gt;goodluck and best wishes... &lt;br/&gt;&lt;br/&gt;btw - i hope my email is visible to you as its your blogg,  that way if you want to send me some files or testversions,  youd know where to contact me...  if you prefer IM (thrueg skype, gtalk  or msn messenger for live- feed back, also send me a message  im usually online from about  10.00 (GMT +1) till 24:00]]></description>
			<content:encoded><![CDATA[<p>update:  many of the guys interested in this project urge you to setup a paypall account when releasing this patcher,   </p>
<p>Needless to say that this feature seems to be what people REALY want and need&#8230; </p>
<p>goodluck and best wishes&#8230; </p>
<p>btw &#8211; i hope my email is visible to you as its your blogg,  that way if you want to send me some files or testversions,  youd know where to contact me&#8230;  if you prefer IM (thrueg skype, gtalk  or msn messenger for live- feed back, also send me a message  im usually online from about  10.00 (GMT +1) till 24:00</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ntoskrnl		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-44</link>

		<dc:creator><![CDATA[Ntoskrnl]]></dc:creator>
		<pubDate>Fri, 21 Sep 2007 15:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-44</guid>

					<description><![CDATA[ahahah &lt;br/&gt;&lt;br/&gt;well it should be quite easy if you just want to do res hacker script things. It would look something like this:&lt;br/&gt;&lt;br/&gt;File = OpenFile(&quot;filename&quot;)&lt;br/&gt;AddBitmap(&quot;file.bmp&quot;)&lt;br/&gt;SaveFile(File)&lt;br/&gt;&lt;br/&gt;For these operation you won&#039;t need to learn any lua syntax.&lt;br/&gt;&lt;br/&gt;What do u think? =)]]></description>
			<content:encoded><![CDATA[<p>ahahah </p>
<p>well it should be quite easy if you just want to do res hacker script things. It would look something like this:</p>
<p>File = OpenFile(&#8220;filename&#8221;)<br />AddBitmap(&#8220;file.bmp&#8221;)<br />SaveFile(File)</p>
<p>For these operation you won&#8217;t need to learn any lua syntax.</p>
<p>What do u think? =)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: I-Chat		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-43</link>

		<dc:creator><![CDATA[I-Chat]]></dc:creator>
		<pubDate>Fri, 21 Sep 2007 14:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-43</guid>

					<description><![CDATA[-  A -  sorry about the delay - for not noticing...  i forgot to  grab for your main websites blog and only watched the other one... &lt;br/&gt;&lt;br/&gt;so here it is.... basicly all we have to do is test, figure out  lua is harder than expected, take some tutorials, test again,  maybe report some issues,  or aditional  request...  &lt;br/&gt;&lt;br/&gt;&lt;br/&gt;And ofcaurce WORSHIP THEE.... as thy art king of reshacking]]></description>
			<content:encoded><![CDATA[<p>&#8211;  A &#8211;  sorry about the delay &#8211; for not noticing&#8230;  i forgot to  grab for your main websites blog and only watched the other one&#8230; </p>
<p>so here it is&#8230;. basicly all we have to do is test, figure out  lua is harder than expected, take some tutorials, test again,  maybe report some issues,  or aditional  request&#8230;  </p>
<p>And ofcaurce WORSHIP THEE&#8230;. as thy art king of reshacking</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ntoskrnl		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-42</link>

		<dc:creator><![CDATA[Ntoskrnl]]></dc:creator>
		<pubDate>Sun, 16 Sep 2007 22:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-42</guid>

					<description><![CDATA[You&#039;re welcome =)]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re welcome =)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-41</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sun, 16 Sep 2007 21:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-41</guid>

					<description><![CDATA[Oh, sry... and thanks for the quick answer :)]]></description>
			<content:encoded><![CDATA[<p>Oh, sry&#8230; and thanks for the quick answer 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ntoskrnl		</title>
		<link>https://ntcore.com/cff-explorer-script/#comment-40</link>

		<dc:creator><![CDATA[Ntoskrnl]]></dc:creator>
		<pubDate>Sun, 16 Sep 2007 15:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcecafe.net/?p=17#comment-40</guid>

					<description><![CDATA[Well, that bug has been already fixed some weeks ago. Try downloading the CFF Exlorer again.&lt;br/&gt;&lt;br/&gt;By the way, the problem was only that the menu &quot;close&quot; had the same ID of the button (strangely enough) and the message was handled in the wrong way.&lt;br/&gt;&lt;br/&gt;Thank you for you report anyway.]]></description>
			<content:encoded><![CDATA[<p>Well, that bug has been already fixed some weeks ago. Try downloading the CFF Exlorer again.</p>
<p>By the way, the problem was only that the menu &#8220;close&#8221; had the same ID of the button (strangely enough) and the message was handled in the wrong way.</p>
<p>Thank you for you report anyway.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
