SphereCommunity
Reveal Spell, Detecting Hidden - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Reveal Spell, Detecting Hidden (/Thread-Reveal-Spell-Detecting-Hidden)



Reveal Spell, Detecting Hidden - Art - 03-03-2013 03:51 AM

Hello.

How i can change distance of spell Reveal?
How i can allow using of skill 'Detecting Hidden' while war mode enabled?

Thanks Smile


RE: Reveal Spell, Detecting Hidden - Wap - 03-03-2013 06:14 AM

1)
Quote:27-08-2011, ShiryuX
- Added: LOCAL.AREARADIUS, which let you change the radius of the hardcoded area spells
and let you set the radius of scripted skills (if not set, default is 4).
Example:
[SPELL s_new_spell]
FLAGS=SPELLFLAG_SCRIPTED|SPELLFLAG_AREA|SPELLFLAG_TARG_XYZ
....
ON=@SUCCESS
LOCAL.AREARADIUS = 5
?

2) Really, war mode doesn't block skills. War actions blocks. It is fixable by some like that:
Quote://to detect hidden skill block
ON=@Wait
IF (<ACTION> != skill_detecthidden)
ACTION=-1
ENDIF