ID:158791
 
is it possible to switch skins for certian players like if they log in and are born in"watever place" they have a diffrent skin then a player born in a diffrent place.
Yes
In response to Ripiz
how so link me to a article or something tht might help me
In response to Goggeeta
winset() + Skin Reference (offline version can be gotten through DM > Help > Skin Reference)

For example: you can winset() the main window element's image property to an image of where ever the person was born:

mob/proc/Interface_Update()
If(src is born in forest)
If(src is human) Set Image = Tarzan
Else Set Image = Jungle
Else
Set Image = Default



Obviously this will not work but it is showing you that it's a good idea to have a procedure defined for this type of thing.
In response to GhostAnime
I think he means to change the skin file used during runtime, though I'm not sure. This would be useful information for me as well :)