I’m gonna share my dcss memes here. Feel free to post your own
If it sucks… hit da bricks!!! https://twitter.com/dasharez0ne/status/979810839749210112
tile_player_tile = mons:norris
I’m gonna share my dcss memes here. Feel free to post your own
tile_player_tile = mons:norris
Next time I play I’m going to have the hit the bricks meme up on both my other screens. Best advice. Maybe we need a “use your consumables, dumbass” meme as a companion for me.
{
function hp_ratio()
hp, mhp = you.hp()
return hp / mhp
end
itsoverratio = .30
werebackratio = .70
itsover = hp_ratio() <= itsoverratio
function evaluate_wellbeing()
if itsover and hp_ratio() >= werebackratio then
crawl.take_note("we're so back!")
crawl.mpr("we're so back!")
itsover = false
elseif not itsover and hp_ratio() <= itsoverratio then
crawl.take_note("it's so over!")
crawl.mpr("it's so over!")
itsover = true
end
end
function ready()
evaluate_wellbeing()
end
}
(if you already have a ready() function, add evaluate_wellbeing() to it, don’t paste a second ready function)
what is the AoOp thing? that whole sentence is confusing for my smooth brain. otherwise great advice
Attacks of opportunity, I’m guessing?
lol yes. i literally took ispiration from this meme