ID:1432878
 
This is probably not that much of a "good" question, nontheless, I wish to try something out and need some help in doing so.

So, easily asked, is there some kind of way to make DreamDaemon use more and more RAM? Perhaps in some kind of loop. Can this be done by simple object spawning, or is there a better way?

Thanks in advance!

This is an odd question, but sure.

Simple object spawning is fine, particularly if make the previous object refer to the previous one:

TestObject
var/TestObject/next = null

New(var/TestObject/T)
if (T)
T.next = src

var/TestObject/root = new(null)

client
verb
allocate(var/N as num)
N--
var/TestObject/next = root
for (var/I in 1 to N)
next = new(next)