Switch to edit mode.
Name(s): kick_grave1: if (player.location != this)
2: return "Not happening."
3: endif
4: grave = this:match_grave(args[1])
5: if (grave == 0)
6: $msg:mtell("not_here", args[1])
7: elseif (grave == 1)
8: $msg:mtell("ambiguous", "grave")
9: else
10: player:tell("You kick ", grave, "'s gravestone.")
11: this:announce(player.name, " kicks ", grave, "'s gravestone.")
12: suspend(2)
13: player:tell("A hand suddenly reaches out of the ground and grabs you by the ankle.")
14: this:announce("A hand suddenly reaches out of the ground and grabs ", player.name, " by the ankle.")
15: suspend(1)
16: player:tell("You get pulled into the ground by the hand.")
17: this:announce(player.name, " is pulled into the ground by the hand.")
18: player:moveto(#4912)
19: endif
20: "Last modified by BoilingOil (#9799) on Sun Jul 21 07:36:41 2002 MDT."