u/eirikdaude

▲ 3 r/dcss

CIP - OnIE^Yr - Spell choices for mid / end game

https://crawl.xtahua.com/crawl/morgue/ereinion/ereinion.txt

I just picked up an amazing randart pearl dragon armour, and after a nerve wracking zombie end vault in Swamp I feel more or less ready to take on the Spiders' Nest.

I feel I need to start training my spellcasting skills for the end game though, and I am very uncertain about what to choose.

On previous OnIE I have liked to train polearms and summoning to stab at the enemies over my allies, but given my current spell choices it doesn't seem too feasible.

Both Fulsome Fusillade and Polar Vortex would be fun to get castable, I have had a lot of fun with those on previous caster characters. However, especially for Polar Vortex, I don't know if there is enough xp left in the dungeon to get it up and running? And neither of them will play nice with Yre's zombies...

Thoughts on what would make this a feasible end game character?

reddit.com
u/eirikdaude — 7 days ago
▲ 5 r/vba

Using non-English letters in regex

I'm having some trouble with a code I have. I want the regular expression to check for letters - including the Scandinavian letters æ, ø, å.

The problem is that if someone without the correct localisation settings open the file and saves it, the pattern gets corrupted.

It's supposed to be monster = "[^a-zA-ZæøåÆØÅ\- ]?" but turns into something like what is shown below. Is there any way to prevent this from happening, or will I just have to find a workaround? Any help would be most appreciated.

For i = 0 To UBound(medlemsliste)
  monster = "[^a-zA-Z®¯¾¿aa\- ]?"
  regex.Pattern = monster
  medlemsliste(i) = regex.Replace(medlemsliste(i), "")
Next i
reddit.com
u/eirikdaude — 10 days ago