ID:167064
 
I'm sorry to say that I'm a noobie to both BYOND and coding in general (though I'm following tutorials, reading guides, and learning). I doubt I'm ready to implement the coding at this current time, but I'd like to learn if it's actually possible, before looking for alternatives.

Is it possible to have 'restricted' avatars for certain PCs, such as GMs, that are not made available to all players?

Any help is appreciated.
Change their icon file, mainly.
var/list/adminlist=list("Boobs","Titties")
mob/Login()
..() // Parent proc ('Do the normal')
src.icon='pc.dmi'
if(src.key in adminlist) src.icon='admin.dmi'