Triggering antimagic encounter
Moderator: Moderator
-
- Spiderkin
- Posts: 454
- Joined: Sat May 15, 2010 3:09 am
Triggering antimagic encounter
I got to 15 as a berserker using no scrolls, but wandering around the wilderness produces nothing. I took Imbue Item as an escort quest reward, which gave me a mana bar. Did that screw me?
Re: Triggering antimagic encounter
You can check the encounter triggering code by opening mod/data/general/encounters/arda-west.lua.
You can search for the the "casted_spells" and "used_magic_devices" variables in the tome folder and find that magic devices have a "is_magic_device" flag, whereas talents that have "is_spell" count against you. The "is_spell" variable is actually set for the entire talent type/category, so you can identify which talents qualify there. It looks like only scrolls and wands are considered magic devices for now (I think activated artifacts should be included, eg. Ring of Ulmo).
Finally, if you can access Angolwen you have demonstrated a friendly attitude to those accursed magic users, which I am guessing is what actually did you in.
Code: Select all
special_filter = function(self)
local p = game.player
if p.level < 15 then return false end
if p:attr("casted_spells") then return false end
if p:attr("used_magic_devices") then return false end
if p:knowTalent(p.T_TELEPORT_ANGOLWEN) then return false end
if p:attr("angolwen_access") then return false end
return true
end,
Finally, if you can access Angolwen you have demonstrated a friendly attitude to those accursed magic users, which I am guessing is what actually did you in.
<DarkGod> lets say it's intended
Re: Triggering antimagic encounter
I was able to understand where to find info on objects (and thank DarkGod you can still use potions...) but I'm not clear on where to find spell info. In particular, are Hymns and Chants considered to be spells?
Re: Triggering antimagic encounter
Are considered spells:
* All magic spells
* All divine talents
* All corruption talents
* All magic spells
* All divine talents
* All corruption talents
[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

-
- Thalore
- Posts: 145
- Joined: Tue Jan 10, 2006 6:57 pm
Re: Triggering antimagic encounter
is there a particular area of the wilderness you have to wander?
Am level 15, am confident I met the criteria.
Am level 15, am confident I met the criteria.
-
- Sher'Tul
- Posts: 1022
- Joined: Fri May 21, 2010 8:16 pm
- Location: Inside the minds of all
- Contact:
Re: Triggering antimagic encounter
Out of curiosity, why the corruptions?darkgod wrote:Are considered spells:
* All magic spells
* All divine talents
* All corruption talents
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: Triggering antimagic encounter
corruptions are "evil" magic. It works of the magic stat
[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

Re: Triggering antimagic encounter
The skills of the Cursed class all run off of Willpower or Strength, and the word "magic" doesn't show up in any of the text descriptions. Are they offensive to the antimagic types? I'd thought they were, but if "uses the magic stat" is the criteria....
Re: Triggering antimagic encounter
They are not spells
[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

Re: Triggering antimagic encounter
*blinks*
Right. Total reading/comprehension fail on my part. Thank you.
I suppose I haven't yet unlocked the class that uses corruptions.
Right. Total reading/comprehension fail on my part. Thank you.
I suppose I haven't yet unlocked the class that uses corruptions.
-
- Thalore
- Posts: 158
- Joined: Wed May 19, 2010 4:05 am
Re: Triggering antimagic encounter
So just to make completely crystal clear--selecting magical abilities/hyms/chants as a reward, but not using them, does NOT violate the quest?
Thanks!
Thanks!
Re: Triggering antimagic encounter
I was able to get the antimagic quest with a hymn and an imbue item reward with no problem.So just to make completely crystal clear--selecting magical abilities/hyms/chants as a reward, but not using them, does NOT violate the quest?