@verb #9090:"drink" none out of/from inside/from any rdo #7446 @program #9090:"drink" none out of/from inside/from any if (this:loc(player) == 9) if (player in this.done) return player:tell("You've drank from the fountain recently...") endif if (this.ps[player in this.p][9] < 5) this.done = listappend(this.done, player) fork (600) this.done = setremove(this.done, player) endfork player:tell("You begin to drink from the fountain...") this:announce(player:title(), " begins to drink from the fountain.") suspend(5) this.ps[player in this.p][9] = 5 if (this:loc(player) == 9) player:tell("You now have 5hp!") this:announce(player:title(), " now has 5hp!") else player:tell("You left the room. You didn't get healed.") endif endif endif .