var/list/clientimages=list()
mob
verb
ImageTest()
if(!clientimages["Dope"])
for(var/turf/T in range())
var/list/l=new
l.Add(clientimages["Image Test"],image('Piece.dmi',T,"cover"))
clientimages["Image Test"]=l
//src<<clientimages["Dope"]
src.client.images+=clientimages["Dope"]
spawn(30)
src.client.images-=clientimages["Dope"]
Problem description:
Basically I want to be able to display and remove a list of images from a usr with a line of code. The list of images are stored in an array. I was seeing if theirs a plausible way of doing this, so I can avoid looping through a list to display the images.