Justing wondering if someone could tell me what arg i can use to get bump to del when hitting a area or show me a example of how to.I have tried many thing and still get runtimes.Thanks in advance
There isn't an argument to put into Bump() that will magically delete something, you have to make it a procedure within Bump().
mob Bump(atom/A) if(usr.bumpy) del(A)
In that instance, I used the variable "bumpy" to determine whether something should be deleted when it's bumped. Of course, you need a verb or something to "activate" or "deactivate" "bump-deleting" things.
In that instance, I used the variable "bumpy" to determine whether something should be deleted when it's bumped. Of course, you need a verb or something to "activate" or "deactivate" "bump-deleting" things.