Hi folks, just your friendly neighborhood Cat Lord looking for some spellcaster info that I can't hunt down in the code myself. Balo and I have been discussing some of the Stormbringer helpfiles in connection to the spell system and there is some.... debate as to just exactly what the moons actually do influence. The helpfile indicates mage spells but there is some debate and neither of us is quite certain where to look in the code to find the info. If anyone knows or can point me in the right direction I would be hugely appreciative of the info.
Moon influence on spells
Posted by Meerclar on Thu 27 Jun 2002 08:58 AM — 3 posts, 15,106 views.
// spellfilcher at half
if (HAS_CLASSFLAG(ch, CLASSFLAG_CASTING_HALFAFFECTED_BY_MOON))
{
spell_level += (weather_info[ch->in_room->sector_type].mage_castmod/2);
if (spell_level<1)
spell_level=1;
}
You'll find this around ln 926 in magic.cpp (give or take 100 lines due to personal DS-code) =) Hope this helps.
- Daos
turalyon@socket.net
if (HAS_CLASSFLAG(ch, CLASSFLAG_CASTING_HALFAFFECTED_BY_MOON))
{
spell_level += (weather_info[ch->in_room->sector_type].mage_castmod/2);
if (spell_level<1)
spell_level=1;
}
You'll find this around ln 926 in magic.cpp (give or take 100 lines due to personal DS-code) =) Hope this helps.
- Daos
turalyon@socket.net
Many thanks, that wasn't exactly what I was looking for but following what else I found led me where I wanted to go. Kal, thats some hellishly designed spellmod code you have, I like it :) Makes me glad I flagged SB:R sorcerers with moon affected casting.