# How to erase stuff written by survival-marker?

**URL:** https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056
**Category:** The Bunker
**Created:** [July 14, 2015, 7:37am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056 "2015-07-14T07:37:48Z")
**Posts on this page:** 14
**Page:** 1

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 14, 2015, 7:37am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/1 "2015-07-14T07:37:48Z")

</div>

I’ve written stuff all over my base using survival marker to mark stashes, rooms, etc. But now its really annoying me, the ground marked by survival marker shows up in red and it doesn’t go away. Is there any option of wiping the graffiti off the ground? using mop doesn’t help. I guess placing carpet on that area should work, but I haven’t tried it yet.

Any ideas?

---

<div class="post-metadata">

### Author: ![John\_Candlebury](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/john_candlebury/32/6437_2.png) [@John\_Candlebury](https://discourse.cataclysmdda.org/u/John_Candlebury)
#### Post date: [July 14, 2015, 12:30pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/2 "2015-07-14T12:30:31Z")

</div>

Activate the marker above the graffiti and emptying the message box, I think.

---

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 14, 2015, 12:35pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/3 "2015-07-14T12:35:11Z")

</div>

That does _erase_ the graffiti written on the floor but the floor still shows up in red. I don’t have any problem with the writing but the red highlighted floor looks like I’ve placed some crappy carpet on it.

---

<div class="post-metadata">

### Author: ![Soyweiser](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/soyweiser/32/37_2.png) [@Soyweiser](https://discourse.cataclysmdda.org/u/Soyweiser)
#### Post date: [July 14, 2015, 12:51pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/4 "2015-07-14T12:51:55Z")

</div>

Hmm that sounds a bit like a bug. Perhaps report it on github.

---

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 14, 2015, 1:07pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/5 "2015-07-14T13:07:56Z")

</div>

> [@Soyweiser](#):
>
> Hmm that sounds a bit like a bug. Perhaps report it on github.

Well it looks like it. I guess I’ll have to leave it as it is. But next time I’m gonna use signboards, markers reserved for turret-rooms in labs.

---

<div class="post-metadata">

### Author: ![EditorRUS](https://avatars.discourse-cdn.com/v4/letter/e/9fc29f/32.png) [@EditorRUS](https://discourse.cataclysmdda.org/u/EditorRUS)
#### Post date: [July 15, 2015, 12:55am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/6 "2015-07-15T00:55:14Z")

</div>

IIRC mop will do it.

---

<div class="post-metadata">

### Author: ![Pthalocy](https://avatars.discourse-cdn.com/v4/letter/p/22d042/32.png) [@Pthalocy](https://discourse.cataclysmdda.org/u/Pthalocy)
#### Post date: [July 15, 2015, 12:58am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/7 "2015-07-15T00:58:21Z")

</div>

If a mop doesn’t do it, I half-jokingly suggest someone add in an (a)pply effect for one of the solvents already in game for removing it.

---

<div class="post-metadata">

### Author: ![EditorRUS](https://avatars.discourse-cdn.com/v4/letter/e/9fc29f/32.png) [@EditorRUS](https://discourse.cataclysmdda.org/u/EditorRUS)
#### Post date: [July 15, 2015, 1:32am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/8 "2015-07-15T01:32:13Z")

</div>

Mop does that. Also you can mess up the space-time by using it. Keep that a secret, we don’t want unneeded people to know that fearsome secret.

[code]int iuse::mop(player \*p, item \*it, bool, const tripoint& )  
{  
int dirx, diry;  
if (!choose\_adjacent(\_(“Mop where?”), dirx, diry)) {  
return 0;  
}

```
tripoint dirp( dirx, diry, p->posz() );
if (dirx == p->posx() && diry == p->posy()) {
    p->add_msg_if_player(_("You mop yourself up."));
    p->add_msg_if_player(_("The universe implodes and reforms around you."));
    return 0;
}
if (p->has_effect("blind") || p->worn_with_flag("BLIND")) {
    add_msg(_("You move the mop around, unsure whether it's doing any good."));
    p->moves -= 15;
    if (one_in(3) && g->m.moppable_items_at( dirp )) {
        g->m.mop_spills( dirp );
    }
} else {
    if (g->m.moppable_items_at( dirp )) {
        g->m.mop_spills( dirp );
        add_msg(_("You mop up the spill."));
        p->moves -= 15;
    } else {
        p->add_msg_if_player(m_info, _("There's nothing to mop there."));
        return 0;
    }
}
return it->type->charges_to_use();

```

}[/code]

---

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 15, 2015, 3:21am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/9 "2015-07-15T03:21:18Z")

</div>

Yep. EditorRUS is right, the mop doesn’t do it. If the player mops the tile he’s standing on the following message is displayed:

“You mop yourself up.”  
“The universe implodes and reforms around you.”

But the graffiti is stays there.

And trying to mop the graffiti on an adjacent tile gives the “There’s nothing to mop there.” message.

I guess the graffiti is not moppable since its not considered a spill. Currently, only spills like blood splatter or spilled water can be mopped. Spraying graffiti using spray can or writing using permanent marker doesn’t make any difference.

`
add_msg(_("You mop up the spill."));
`

I think its a bug, and if it is, then it should be fixed.

---

<div class="post-metadata">

### Author: ![Soyweiser](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/soyweiser/32/37_2.png) [@Soyweiser](https://discourse.cataclysmdda.org/u/Soyweiser)
#### Post date: [July 15, 2015, 12:33pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/10 "2015-07-15T12:33:44Z")

</div>

try spilling water on that spot.

---

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 15, 2015, 2:41pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/11 "2015-07-15T14:41:41Z")

</div>

> [@Soyweiser](#):
>
> try spilling water on that spot.

No, that doesn’t work. Spilling water (or any other stuff) in the said tile and then mopping up that tile mops up the spill but the graffiti stays there. In short, the writing’s still there and the floor is still highlighted red. I guess, its becoming apparent that its a bug or more accurately a missing feature (just like we lack the feature to destroy items gained from debug menu or otherwise).

---

<div class="post-metadata">

### Author: ![Soyweiser](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/soyweiser/32/37_2.png) [@Soyweiser](https://discourse.cataclysmdda.org/u/Soyweiser)
#### Post date: [July 15, 2015, 4:02pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/12 "2015-07-15T16:02:25Z")

</div>

You don’t lack that feature. You can delete items using lua commands. Use map:i\_clear(player:pos()) while standing on a pile of stuff to delete it all.

---

<div class="post-metadata">

### Author: ![hexman](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/hexman/32/2599_2.png) [@hexman](https://discourse.cataclysmdda.org/u/hexman)
#### Post date: [July 16, 2015, 7:07am UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/13 "2015-07-16T07:07:41Z")

</div>

Yeah, just noticed a post on it. Is there a similar command for “deleting” the graffiti written on the ground?

---

<div class="post-metadata">

### Author: ![Soyweiser](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/soyweiser/32/37_2.png) [@Soyweiser](https://discourse.cataclysmdda.org/u/Soyweiser)
#### Post date: [July 16, 2015, 12:38pm UTC](https://discourse.cataclysmdda.org/t/how-to-erase-stuff-written-by-survival-marker/10056/14 "2015-07-16T12:38:58Z")

</div>

No idea. Still reading up on Lua commands.
