Page 1 of 1

Summon Pinkies

Posted: 03 Nov 2010, 10:55
by Merlin
With all the self proclaimed pinkies out there I thought it would be nice if they could summon some. I've heard it requested a few times and figured it would be a good way for me to figure how to add test spells to my server. I couldn't come up with the perfect name, but I name this spell:

#kalkurkink

Code: Select all

LOCAL SPELL summon-pinkies : "#kalkurkink" =
      LET level = 2
          school = ASTRAL
      IN (MANA 49, CASTTIME 20000,
          REQUIRE skill(caster, MAGIC) > level,
          REQUIRE skill(caster, school) > level,
          COMPONENTS ["PinkAntenna", "Root"])
          => EFFECT CALL adjust_spellpower(school);
                    CALL default_effect();
                    CALL gain_xp(1);
                    CALL summon_spell(1018, 1 + spellpower / 170 + spellpower / 430, 5000 - (spellpower * 8), spellpower * 350, 3);
I increased the lvl of magic to cast to lvl 2 and the mana cost to 49 over 39. I would like to know more about the last line of variables before I start changing them.

Re: Summon Pinkies

Posted: 03 Nov 2010, 12:15
by lien
MerlinX420 wrote:With all the self proclaimed pinkies out there I thought it would be nice if they could summon some. I've heard it requested a few times and figured it would be a good way for me to figure how to add test spells to my server. I couldn't come up with the perfect name, but I name this spell:

#kalkurkink

Code: Select all

LOCAL SPELL summon-pinkies : "#kalkurkink" =
      LET level = 2
          school = ASTRAL
      IN (MANA 49, CASTTIME 20000,
          REQUIRE skill(caster, MAGIC) > level,
          REQUIRE skill(caster, school) > level,
          COMPONENTS ["PinkAntenna", "Root"])
          => EFFECT CALL adjust_spellpower(school);
                    CALL default_effect();
                    CALL gain_xp(1);
                    CALL summon_spell(1018, 1 + spellpower / 170 + spellpower / 430, 5000 - (spellpower * 8), spellpower * 350, 3);
I increased the lvl of magic to cast to lvl 2 and the mana cost to 49 over 39. I would like to know more about the last line of variables before I start changing them.
-> http://forums.themanaworld.org/viewtopi ... 513#p97513 . already exist.