ID:1194630
 
(See the best response by LordAndrew.)
Code:
obj/Chibaku

icon = '(Nagato) Chibaku Tensei.dmi'
pixel_x = -32
pixel_y = -16
layer = MOB_LAYER+1


Problem description:
Hi, anyone know how to flick the icon on this obj?
Is it flick(icon,usr)? or flick(icon,obj)?

Best response
You have to have a reference to the object in order to flick it. Something like:
mob/verb/test()
var/obj/Chibaku/Chibaku = new(loc)

flick("whatever", Chibaku)

Would do it for example.