Angband.oook.cz
Angband.oook.cz
AboutVariantsLadderForumCompetitionComicScreenshotsFunniesLinks

Go Back   Angband Forums > Angband > Development

Reply
 
Thread Tools Display Modes
Old June 20, 2011, 05:17   #1
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
Wands of Slow Monster are awesome

My current character has now managed to take down Brodda, Wormtongue, Orfax, Boldor, and Ufthak without any issues whatsoever, because after one or two zaps with his Wand of Slow Monster, they've been tossed down to Very Slow.

Is this desirable? If not, what is desirable? If early uniques should be slowable (and I don't see why they shouldn't be) how hard should it be to slow them, and how long should it take them to recover? And how much should they be slowed by? By way of comparison, when the player gets slowed (as my half-troll rogue, with his 26% saving throw, does so very depressingly often), it typically lasts only for maybe 5 turns, and the speed reduction is a flat -10.

Looking at the code, wands of Slow Monster have a flat power level of 50 (thus, monster slowing should last about 50 turns...I think, though AFAICT there's no place where the monster's speed is restored when the timer runs out). They should also only reduce speed by 10, but seem to be doing so by more than that, even after only one zap.

There's zero dependence on the player's magic device skill. This seems like a clear opportunity to make wand power scale with skill level.
Derakon is offline   Reply With Quote
Old June 20, 2011, 05:33   #2
Philip
Knight
 
Join Date: Jul 2009
Location: Prague,Czech Republic
Posts: 909
Philip is on a distinguished road
Mages with both the sleep monster and the slow monster spell are also awesome. As soon as I start running out of mana I can sleep a monster, rest up, slow him and start magic missleing.
Philip is offline   Reply With Quote
Old June 20, 2011, 06:02   #3
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
I'm gonna go out on a limb and say that Wands of Slow Monster are buggy. I hit Lugdush with one once and he started moving one turn in five (EDIT: which works out to 1 in 3 after considering my 1.6 blows/round...so that just matches the "very slow" I was noting earlier). That's insane. I don't understand how this is happening since, from my reading of the code, it should only be possible to slow a monster once, and that only by -10. So something screwy's going on here.

Last edited by Derakon; June 20, 2011 at 06:27.
Derakon is offline   Reply With Quote
Old June 20, 2011, 12:01   #4
Magnate
Angband Devteam member
 
Join Date: May 2007
Location: London, UK
Posts: 5,060
Magnate is on a distinguished road
Send a message via MSN to Magnate Send a message via Yahoo to Magnate
Quote:
Originally Posted by Derakon View Post
I'm gonna go out on a limb and say that Wands of Slow Monster are buggy. I hit Lugdush with one once and he started moving one turn in five (EDIT: which works out to 1 in 3 after considering my 1.6 blows/round...so that just matches the "very slow" I was noting earlier). That's insane. I don't understand how this is happening since, from my reading of the code, it should only be possible to slow a monster once, and that only by -10. So something screwy's going on here.
I agree that this is buggy. We need to look at the duration as well as the amount of slowing that's going on. I've opened ticket #1482 for this.
__________________
"3.4 is much better than 3.1, 3.2 or 3.3. It still is easier than 3.0.9, but it is more convenient to play without being ridiculously easy, so it is my new favorite of the versions." - Timo Pietila
Magnate is offline   Reply With Quote
Old June 20, 2011, 12:23   #5
takkaria
Veteran
 
takkaria's Avatar
 
Join Date: Apr 2007
Posts: 1,951
Donated: $40
takkaria is on a distinguished road
Quote:
Originally Posted by Derakon View Post
Looking at the code, wands of Slow Monster have a flat power level of 50 (thus, monster slowing should last about 50 turns...I think, though AFAICT there's no place where the monster's speed is restored when the timer runs out).
I don't remember quite where it's done, but monsters definitely should speed up again (I remember testing that it happened fairly recently).
__________________
takkaria whispers something about options. -more-
takkaria is offline   Reply With Quote
Old June 20, 2011, 15:14   #6
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
Quote:
Originally Posted by takkaria View Post
I don't remember quite where it's done, but monsters definitely should speed up again (I remember testing that it happened fairly recently).
I think I was misreading the code. There is a line to restore the monster's speed. Still, 50 turns of Very Slow is excessive.
Derakon is offline   Reply With Quote
Old June 20, 2011, 21:31   #7
Magnate
Angband Devteam member
 
Join Date: May 2007
Location: London, UK
Posts: 5,060
Magnate is on a distinguished road
Send a message via MSN to Magnate Send a message via Yahoo to Magnate
Ok, here's the code for slow monster:
Code:
} else if (idx == MON_TMD_SLOW) {
        if (v) {
            if (m_ptr->mspeed < r_ptr->speed - 10) {
                m_note = MON_MSG_UNAFFECTED;
                resisted = TRUE;
            } else {
                m_ptr->mspeed -= 10;
            }
        } else {
            m_ptr->mspeed = r_ptr->speed;
        }
    }
That means a monster can get to -20 speed after two successful zaps. That does seem a bit powerful. We could of course make it easy for them to save, but that quickly renders the spell junk. I'd rather the save was reasonable (are they failing too rarely at the moment?) and both the power and duration were toned down a bit. Changing the above to -= 5 would be a good start, and reducing the duration too. The code is too tangled for me to understand where the numbers 100 (slow monster) and 50 (slow monsters) come from - they seem arbitrary.

EDIT: some further investigation suggests that low-level monsters must be failing their saves an awful lot, due to an error in my fix for #1427. Ho hum. But the 50- or 100-turn duration of slowing predates my changes (and perhaps was intended to be balanced with monsters saving almost every time). I think halving both the duration and the speed penalty would be a good start.

EDIT2: ok, I just pushed a fix to staging which improves monster saves, reduces the duration of slowing to 20 turns and halves the speed penalty. But it seems to be buggy: -5 is now halving the monster speed, so this means Derakon was not going mad when he said the original code (-10) was making the monster move once in four or five moves. Stay tuned.
__________________
"3.4 is much better than 3.1, 3.2 or 3.3. It still is easier than 3.0.9, but it is more convenient to play without being ridiculously easy, so it is my new favorite of the versions." - Timo Pietila

Last edited by Magnate; June 20, 2011 at 22:00.
Magnate is offline   Reply With Quote
Old June 20, 2011, 23:35   #8
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
Monsters don't seem to resist all that often. I don't think any of the uniques I fought resisted more than once before succumbing. As for the numbers, the 50 comes from the defined effect for MON_SLOW; it's in the call to project(...GF_OLD_SLOW...), IIRC. I don't have the code with me just at the moment to double-check, sadly.
Derakon is offline   Reply With Quote
Old June 21, 2011, 01:41   #9
buzzkill
Prophet
 
buzzkill's Avatar
 
Join Date: May 2008
Location: Indiana, USA
Posts: 2,939
Donated: $8
buzzkill is on a distinguished road
When I slow something, I expect it to be moving at half speed (in most cases, or -10 by in PC terminology). Please don't change this.

If you want to limit the maximum slowing to -10, I fully support it. I always found it odd that slowing stacked.

I assume uniques get a extra save or something vs. slow/confuse/sleep. I don't want (all) uniques to be immune, but I do want to have to burn half a dozen charges before one takes.
__________________
www.mediafire.com/buzzkill - Get your 32x32 tiles here. UT32 now compatible Ironband and Quickband 9/6/2012.
My banding life on Buzzkill's ladder.
buzzkill is offline   Reply With Quote
Old June 21, 2011, 02:07   #10
Derakon
Prophet
 
Derakon's Avatar
 
Join Date: Dec 2009
Posts: 9,022
Derakon is on a distinguished road
I suspect that the problem here is that -10 in that code doesn't actually mean "half speed"; there's probably some weird interpretation of that speed value that's causing -10 to mean "one third speed". That's a bug. The fact that monsters are so easily slowed is another.
Derakon is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Vanilla = awesome Therem Harth Vanilla 1 May 21, 2010 13:46
Those awesome magical mushrooms Nero Vanilla 5 May 9, 2010 19:05
Does Entroband reward one with experience for finding awesome items? BlackFlame Variants 3 February 18, 2010 07:28
Wands and Staves? Larvitz Vanilla 3 January 16, 2009 22:14
Slow going Shade AAR 17 April 12, 2008 01:21


All times are GMT +1. The time now is 04:18.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.