Teleport issues
Moderator: Moderator
Teleport issues
On my Skeleton Arcane Blade, he went from 4 to 5 points in Teleport, yet was still only able to Teleport to a general area rather than the specific square (with some inaccuracy, of course) functionality you get with Phase Door at 5 points. The targeting reticule (and effect on casting, either) didn't change at all going from 4 to 5. Is Teleport meant to not be nearly as targetable as Phase Door?
Re: Teleport issues
Yes
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning

-
- Sher'Tul
- Posts: 1022
- Joined: Fri May 21, 2010 8:16 pm
- Location: Inside the minds of all
- Contact:
Re: Teleport issues
I actually don't find the need for a 5th point on Phase Door as 1 square off from where I tell it to go is almost never a problem, and if it is, I shouldn't be teleporting or teleporting someone else there to begin with. I say either increase the area of phase door by 1 or maybe even 2 more to warrant putting in the 5th point.
Final Master's Character Guides
Final Master's Guide to the Arena
Edge: Final Master... official Tome 4 (thread) necromancer.
Zonk: I'd rather be sick than on fire! :D
Final Master's Guide to the Arena
Edge: Final Master... official Tome 4 (thread) necromancer.
Zonk: I'd rather be sick than on fire! :D
Re: Teleport issues
Remember, if you're playing an archmage, four points in phase door gets you an effective rank if 5.2. It's not actually possible for an archmage to have an effective rank of 4...
Re: Teleport issues
The spell description is a little confusing. Here is a patch that will hopefully clear it up a bit:
Code: Select all
Index: modules/tome/data/talents/spells/conveyance.lua
===================================================================
--- modules/tome/data/talents/spells/conveyance.lua (revision 1164)
+++ modules/tome/data/talents/spells/conveyance.lua (working copy)
@@ -77,9 +77,9 @@
end,
info = function(self, t)
return ([[Teleports you randomly with a small range (%d).
- At level 4 it allows one to choose the target area.
- At level 5 it allows one to specify the exact target.
- The range will increase with the Magic stat]]):format(10 + self:combatSpellpower(0.1))
+ At level 4 it allows one to choose the target area (radius %d).
+ At level 5 it allows one to specify the actor to teleport.
+ The range will increase with the Magic stat]]):format(10 + self:combatSpellpower(0.1), 7 - self:getTalentLevel(t))
end,
}
@@ -145,9 +145,9 @@
end,
info = function(self, t)
return ([[Teleports you randomly with a large range (%d), with a minimum range of 15.
- At level 4 it allows one to choose the target area.
- At level 5 it allows one to specify the exact target.
- The range will increase with the Magic stat]]):format(100 + self:combatSpellpower(0.1))
+ At level 4 it allows one to choose the target area (radius %d).
+ At level 5 it allows one to specify the actor to teleport.
+ The range will increase with the Magic stat]]):format(100 + self:combatSpellpower(0.1), 20 - self:getTalentLevel(t))
end,
}
<DarkGod> lets say it's intended
Re: Teleport issues
Fixed
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning
