[Help] Shadow Spell weapon restriction.

Lamex

New member
Messages
64
Points
0
Wondering if its possible to make ShadowSpell working with bows? Know nothing about src, sadly.

 
You mean SC_AUTOSHADOWSPELL ?
default_smile.png


 
Last edited by a moderator:
here is what i did. in battle.c find

if( wd.flag&BF_SHORT && sc

and change to

if( wd.flag&BF_SHORT|BF_LONG && sc


not sure if it is the proper way to change it. i just know it works for me now

 
You mean SC_AUTOSHADOWSPELL ?
default_smile.png
Yep, thats what i mean.
default_smile.png

here is what i did. in battle.c find

Code:
if( wd.flag&BF_SHORT && sc
and change to
Code:
if( wd.flag&BF_SHORT|BF_LONG && sc
not sure if it is the proper way to change it. i just know it works for me now
Yeah it works. Thanks! Hope it will not break something
default_biggrin.png
 
Last edited by a moderator:
Back
Top