overlays in client.screen in Developer Help
how do i layer an overlay in the clients screen?
var/obj/Items/R = src.bot1wepR.layer = T.layer + 1T.overlays += R
T.overlays += src.bot1wep
thanks it works now New code
var/obj/Items/R = new()R.icon = src.bot1wep.iconR.icon_state = src.bot1wep.icon_stateR.layer = T.layer + 1T.overlays += R
can you see any errors in that?
var/obj/Items/R = new()R=src.bot1wepR.layer+=1T.overlays += R
The same as for any other overlay. Create an obj, give it a layer, add it to the overlays list.
Lummox JR