What I want is them to be numbered with the LockerNumber var in the order they are created on the map.
But I want them in a row.
And it would take WAY too long to manually go through and change the var for each individual.
var/LockerCount = 1
obj/Lockers/
icon = 'Hallways.dmi'
var/LockerNumberTaken
var/LockerNumber
var/combination
var/combo1
var/combo2
var/combo3
New()
..()
LockerNumber = LockerCount
LockerCount++
Click()
if(src.in oview(1))
usr<<"This is locker #[src.LockerNumber]!"
else
return