mob
var
list
hairs=list('1.dmi','2.dmi','3.dmi')
skins=list('5.dmi','4.dmi')
positions=list("hair"=1,"skins"=1)
proc/Hair(todo,list/L=positions,place="hair")
if(L[place])
if(todo=="--") L[place]--
else L[place]++
if(L[place]>length(hairs)) L[place]=1
if(L[place]<=0) L[place]=length(hairs)
src.overlays=null
src.overlays+=hairs[L[place]]
obj/lol
screen_loc="3,5"
icon='lol.dmi'
Click()
usr.Hair("--")
obj/nolol
screen_loc="5,5"
icon='nolol.dmi'
Click()
usr.Hair("++")
This is a fixed version of a snippet of code Cheetoz gave me for list cycling for HUD creation. Now, one semiobvious question is how am I going to get it to where there will be a sort of "dummy" on the screen with the 2 obj's shown in the snippet to cycle the hair on? And if there's any way to improve it, feel free to mention.
And I don't even know if that works, I was just testing it out when I was bored looking for shortcuts. <.<'