im trying to make it to when you step on a certain turf it comes up with an alert message saying something and then it doesn't anymore ... like it deletes the turf...hmmm
would this work
turf/blah
alert("Welcome to Here")
del /turf/blah
would that be possible
Copyright © 2025 BYOND Software.
All rights reserved.
welcome
icon = 'turf.dmi'
icon_state = "thing"
Entered()
alert("welcome to here")
del(src)
that will delete the whole turf
turf
welcome
icon = 'turf.dmi'
icon_state = "thing"
Entered()
alert("welcome to here")
that will not delete the whole turf will just show the alert when it is entered :-)
hope it helps