Switch to edit mode.
Name(s): nudge1: victim = $su:match_player(argstr)
2: if (victim == this.owner)
3: this.owner:tell("Someone tried to nudge you, but you deftly avoided " + player.name + "'s attack!")
4: player:tell("Dizzy_Devil deftly steps aside to avoid your clumsy nudging.")
5: return
6: endif
7: if (!valid(victim))
8: player:tell("You miss your victim, overbalance and plunge to the ground!")
9: this:eject(player)
10: this:announce(player.name, " loses balance and plunges to the mists below!")
11: return
12: endif
13: player:tell("You nonchalantly nudge ", victim.name, ", who loses their balance and falls into the Mist.")
14: victim:tell(player.name, " nonchalantly gives you a push in the small of your back.")
15: victim:tell("You lose your balance and fall off the rafters!")
16: this:eject(victim)
17: this:announce(victim.name, " is pushed from the rafters by ", player.name, ", that callous bastard!")