Disappearing Icons in Developer Help
|
|
Code:
obj Rags name = "Rags" icon = 'Clothing.dmi' verb Wear() if(src.worn) src.worn = 0 usr.overlays -= src.icon else src.worn = 1 usr.overlays += src.icon Drop() if(src:worn == 1) usr << "Not while its being fashioned." if(src:worn == 0) src.loc=locate(usr.x,usr.y-1,usr.z) verb Get() set src in oview(1) usr << output(src, "Grid.Grid:1,6")
|
Problem description: When I 'Run' the file on single user mode and try wearing the Item, it wont appear on my mob. And it wont appear on the grid that's coded
|