1. How would i go about making doors?
2. How do I make it so that when a person walks up to a sign an alert box pops up with what it says?
3. I also need an easy way to make a building system that u pay money to make stuff... The demo is too hard for me... :\
(Don't laff at meh...)
~ Master_Damien
Copyright © 2025 BYOND Software.
All rights reserved.
obj/Door
icon='icon.dmi'
icon_state="Closed"
var
open
verb
Open()
if(!src.open)
flick("Opening",src)
src.icon_state="Open"
density=0
if(src.open)
usr<<"Already open!"
Close()
if(!src.open)
usr<<"Already Closed!"
if(src.open)
flick("Closing",src)
src.icon_state="Closed"
density=1
2.
mob/Bump(atom/A)
..()
if(istype(A,/obj/Sign)
alert("HELLO!",src)