mob/verb/OK()
client.screen += new /butten/OK
How do I remove that OK butten?
ID:261614
![]() Aug 29 2002, 4:13 pm
|
|
I believe the button has to be an atom of some kind to appear in client.screen. Unless it's been changed recently, only objects of type atom/movable can be added to client.screen. -AbyssDragon |
client.screen -= (locate(/obj/button/OK) in client.screen)
I believe the button has to be an atom of some kind to appear in client.screen.
Lummox JR