Rune of the Rift never hits
Moderator: Moderator
-
- Cornac
- Posts: 38
- Joined: Sun Aug 31, 2014 8:15 pm
- Location: Virginia Beach
- Contact:
Rune of the Rift never hits
Everyone resists it? I'm an arcane blade, do I need to have higher certain stats for it to be useful? its supposed to do 250 damage and send them 4 turns into the future... that would be really nice if it did anything at all... I think I've tried to use it 50 or so times and once it worked. What am I missing? ty
-
- Spiderkin
- Posts: 543
- Joined: Sat Feb 11, 2012 1:12 am
Re: Rune of the Rift never hits
It checks your spellpower against their spell save and continuum destabilization.
-
- Cornac
- Posts: 38
- Joined: Sun Aug 31, 2014 8:15 pm
- Location: Virginia Beach
- Contact:
Re: Rune of the Rift never hits
all my other spells hit regularly, and I'm even casting it against level <20 when I'm a level 26. I'm based more on melee fighting than spells, but still... I'd think it would hit once in a while
-
- Uruivellas
- Posts: 708
- Joined: Wed Apr 30, 2008 5:55 pm
Re: Rune of the Rift never hits
Is it affected by current paradox?
Addons: Arcane Blade Tweaks, Fallen Race, Monk Class, Weapons Pack
Currently working on Elementals. It's a big project, so any help would be appreciated.
Currently working on Elementals. It's a big project, so any help would be appreciated.

-
- Cornac
- Posts: 38
- Joined: Sun Aug 31, 2014 8:15 pm
- Location: Virginia Beach
- Contact:
Re: Rune of the Rift never hits
It says it reduces current paradox by 60... is my non-existant paradox whats making it basically useless?
-
- Spiderkin
- Posts: 543
- Joined: Sat Feb 11, 2012 1:12 am
Re: Rune of the Rift never hits
No, it doesn't.
Code: Select all
if target:attr("timetravel_immune") then
game.logSeen(target, "%s is immune!", target.name:capitalize())
return
end
local hit = self:checkHit(self:combatSpellpower(), target:combatSpellResist() + (target:attr("continuum_destabilization") or 0))
if not hit then game.logSeen(target, "%s resists!", target.name:capitalize()) return true end
self:project(tg, x, y, DamageType.TEMPORAL, self:spellCrit(t.getDamage(self, t)))
game.level.map:particleEmitter(x, y, 1, "temporal_thrust")
game:playSoundNear(self, "talents/arcane")
self:incParadox(-60)
if target.dead or target.player then return true end
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100, {power=self:combatSpellpower(0.3)})
-
- Cornac
- Posts: 38
- Joined: Sun Aug 31, 2014 8:15 pm
- Location: Virginia Beach
- Contact:
Re: Rune of the Rift never hits
If thats not the case then... why would their spell resist block that spells temporal damage and not a simple flame or lighting spell? I doubt less than level 20 characters have that much resistance to just temporal.
I'm in dreadfell right now, do non living have more resistance to temporal or something maybe?
I'm in dreadfell right now, do non living have more resistance to temporal or something maybe?
Re: Rune of the Rift never hits
Flame and Lightning don't check saves. Rune of the Rift does. Has nothing to do with fire/lightning/temporal resistance.
Re: Rune of the Rift never hits
Flame and Lightning just produce Fire and Lightning to do damage, the magic is done in your hands, therefore they don't check spell save.
Rune of the Rift uses magic to push the target into the future, the magic is done on the enemy, so it does check spell save and doesn't do any damage if it fails.
Rune of the Rift uses magic to push the target into the future, the magic is done on the enemy, so it does check spell save and doesn't do any damage if it fails.
My feedback meter decays into coding. Give me feedback and I make mods.
-
- Cornac
- Posts: 38
- Joined: Sun Aug 31, 2014 8:15 pm
- Location: Virginia Beach
- Contact:
Re: Rune of the Rift never hits
I see thank you