<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>http://digida.mgpu.ru/index.php?action=history&amp;feed=atom&amp;title=Making_Scratch_Crash_%282.0%29</id>
	<title>Making Scratch Crash (2.0) - История изменений</title>
	<link rel="self" type="application/atom+xml" href="http://digida.mgpu.ru/index.php?action=history&amp;feed=atom&amp;title=Making_Scratch_Crash_%282.0%29"/>
	<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=Making_Scratch_Crash_(2.0)&amp;action=history"/>
	<updated>2026-06-27T03:31:13Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://digida.mgpu.ru/index.php?title=Making_Scratch_Crash_(2.0)&amp;diff=1846&amp;oldid=prev</id>
		<title>Patarakin: 1 версия импортирована</title>
		<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=Making_Scratch_Crash_(2.0)&amp;diff=1846&amp;oldid=prev"/>
		<updated>2022-07-21T08:33:17Z</updated>

		<summary type="html">&lt;p&gt;1 версия импортирована&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;ru&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Предыдущая версия&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Версия от 11:33, 21 июля 2022&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key digida:diff:1.41:old-1845:rev-1846 --&gt;
&lt;/table&gt;</summary>
		<author><name>Patarakin</name></author>
	</entry>
	<entry>
		<id>http://digida.mgpu.ru/index.php?title=Making_Scratch_Crash_(2.0)&amp;diff=1845&amp;oldid=prev</id>
		<title>scratch&gt;Jvvg в 21:42, 6 июня 2022</title>
		<link rel="alternate" type="text/html" href="http://digida.mgpu.ru/index.php?title=Making_Scratch_Crash_(2.0)&amp;diff=1845&amp;oldid=prev"/>
		<updated>2022-06-06T21:42:08Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{obsolete feature}}&lt;br /&gt;
{{other version|2.0|3.0|1.4}}&lt;br /&gt;
{{warning|The [[Terms of Use]] does not allow sharing projects like these, as they can interfere with another user&amp;#039;s ability to use the service by crashing unsuspecting users&amp;#039; Flash Players, browsers, or computers.}}&lt;br /&gt;
&lt;br /&gt;
{{warning|These scripts shown may freeze or crash your Internet browser, Scratch, or computer. Make sure you save your changes before attempting this.}}&lt;br /&gt;
&lt;br /&gt;
[[File:Crashing Example.png|thumb|How the variables and lists duplicate]]&lt;br /&gt;
[[File:Scratch Crashing Chrome.png|thumb|What a crashed Adobe Flash Player looked like on Chrome.]]&lt;br /&gt;
[[File:Flash Crashing Firefox.jpg|thumb|A screen which pulled up when the Adobe Flash Player crashed on Firefox.]]&lt;br /&gt;
One way of making Scratch crash is making a [[variable]] or [[list]] that will double itself, forcing the Scratch [[project]] to lag and then freeze or crash. These methods of making Scratch crash are almost guaranteed.&lt;br /&gt;
==Methods==&lt;br /&gt;
===Variable Method===&lt;br /&gt;
&amp;lt;scratchblocks version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
when green flag clicked&lt;br /&gt;
set [variable v] to (. . .::grey) // Set this to anything that is not empty&lt;br /&gt;
forever&lt;br /&gt;
set [variable v] to (join (variable) (variable) )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
===List Method===&lt;br /&gt;
&amp;lt;scratchblocks  version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
when green flag clicked&lt;br /&gt;
add (. . .::grey) to  [list v] :: list // Set this to anything that is not empty&lt;br /&gt;
forever&lt;br /&gt;
add (list) to [list v]&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
===Clone Method===&lt;br /&gt;
&amp;lt;scratchblocks  version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
when gf clicked&lt;br /&gt;
create clone of [myself v]&lt;br /&gt;
&lt;br /&gt;
when I start as a clone&lt;br /&gt;
create clone of [myself v]&lt;br /&gt;
delete this clone&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
===Custom Block Method===&lt;br /&gt;
&amp;lt;scratchblocks  version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
when green flag clicked&lt;br /&gt;
block // For best results, run without screen refresh.&lt;br /&gt;
&lt;br /&gt;
define block&lt;br /&gt;
block&lt;br /&gt;
&amp;lt;/scratchblocks&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting Tutorials]]&lt;/div&gt;</summary>
		<author><name>scratch&gt;Jvvg</name></author>
	</entry>
</feed>