• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            天行健 君子當自強而不息

            Controlling Players and Characters(27)

             

            Spells in Combat

            Now, you can put all the neat spells that your game has to offer to good use. You
            know how spells work, but you need to know how the spells affect the characters.
            Remember that the spell controller tracks only the meshes that create the visual
            side of spells; the character controller determines the effects of the spells.

            Spells in combat are used mainly to damage an opponent. A spell uses a series of
            calculations to determine the outcome of the spell’s effects, just as physical attacks
            do. Spells have a chance of failing, which is determined by the spell’s chance value
            in the spell definition.

            The chance of a spell working is increased by the caster’s mental ability, which uses
            the following calculation to determine the multiplier to apply to the chance value:

            // Chance = spell’s chance of working
            // Mental = caster’s mental ability
            Chance = (long)(((float)Mental / 100.0f + 1.0f) * (float)Chance);

            The last line shows that the mental value can range from 0 and up. A value of 150
            means to increase the chance by 50 percent, whereas a value of 200 means to double
            the chances. To aid victims of a spell, the target characters have their associated
            resistance abilities factored in as well:

            // Resistance = target’s resistance ability
            Chance = (long)((1.0f - (float)GetResistance(Target) / 100.0f) * (float)Chance);

            When it is determined that the spell took effect, the appropriate actions can be
            taken to handle the results. The only spell effect you want to contend with at this
            time is damage. Whenever damage is dealt to a victim, the victim’s resistance ability
            is used to reduce the amount of damage. Resistance is a percentage value, which
            means that a value of 0 does not reduce spell damage, whereas a value of 100 completely
            dispels damage.

            Status ailments also work their way into spell casting. An ailment of Silenced means a
            character can’t even cast magic spells, whereas an ailment of Dumbfounded reduces
            a character’s mental ability by half. Finally, the Enchanted and Barrier ailments
            reduce the victim’s resistance by half or increase the resistance by 50 percent, respectively.

            You can use the following code to determine whether a spell affects the victim and
            just how much damage is dealt:

            // Chance = Magic spell’s chance of working
            // Mental = Spell caster’s mental ability
            // Resistance = victim character’s resistance amount
            // Amount = base damage amount spell causes
            // Apply status ailments to mental and resistance

            if(Ailments & AILMENT_DUMBFOUNDED)
              Mental /= 2;

            if(Ailments & AILMENT_ENCHANTED)
              Resistance = (long)((float)Resistance * 0.5f);

            if(Ailments & AILMENT_BARRIER)
              Resistance = (long)((float)Resistance * 1.5f);

            // Check chance of working and calculate damage
            Chance=(long)(((float)Mental / 100.0f + 1.0f) * (float)Chance);

            if((rand() % 100) < Chance) {
              float Resist = 1.0f - ((float)Resistance / 100.0f);
              long DmgAmount = (long)((float)Amount * Resist);

              // Apply extra class damage or cure-class amounts here
            }

            After a spell has hit its target, the proper amount of damage to apply is calculated.
            Remember that certain classes of spells can cause twice as much damage as the spell
            normally would to a character, whereas other spells can cure half the damage dealt.
             

            Intelligence in Combat

            Although your game’s players are completely capable of controlling their player
            characters, it’s up to you to control the NPCs. In order to make your game worthy,
            the NPCs’ artificial intelligence needs to be up to par for combating. Their actions
            need to mimic yours, from choosing to attack, healing themselves, or casting a spell.

            Characters are given a rudimentary intelligence when it comes to combat. If a character
            has lost over half of his health or is under the effects of a status ailment, that
            character will attempt to heal himself or dispel the ailments. This means it will
            search through its list of known spells (if any) and cast the appropriate spell for aid.

            If, on the other hand, a PC comes into another character’s range, a hostile charac-
            ter then chooses to either perform a physical attack or a magical attack (if any
            spells are known). You need to assign the chances that a character will perform
            either type of attack. Note that attacks are based on the built-up charge of the
            attacking creature—the charge must be full in order for the creature to attack.

            When the decision is made to attack a nearby character, either the attack is performed
            or a magic spell is chosen. Only spells that hurt other characters are cast. If a character
            does not have a viable target character in range, the game randomly decides that
            the character in question will attempt to enhance itself by using a status ailment-causing
            spell, in this way raising its strength, agility, or other beneficial ailment.

            The specifics on performing the preceding actions come into play when you create
            a character controller that will make such decisions for your characters.

            posted on 2007-12-03 21:00 lovedday 閱讀(148) 評論(0)  編輯 收藏 引用

            公告

            導航

            統計

            常用鏈接

            隨筆分類(178)

            3D游戲編程相關鏈接

            搜索

            最新評論

            久久久久高潮综合影院| 日本三级久久网| 国产精品99久久免费观看| 青青青伊人色综合久久| 久久人人爽人爽人人爽av| 亚洲AV无码一区东京热久久| 99久久国产综合精品成人影院| 久久性生大片免费观看性| 国产成人精品久久二区二区| 国内精品伊人久久久久妇| 久久99国产精一区二区三区| 久久人妻无码中文字幕| 99久久国产综合精品网成人影院| 性色欲网站人妻丰满中文久久不卡| 99精品久久久久久久婷婷| 久久青青草原精品国产| 久久久久久久免费视频| 久久久久久久综合日本| 国产精品一久久香蕉国产线看 | 久久精品99无色码中文字幕| 久久99热这里只有精品国产| 色8激情欧美成人久久综合电| 一级做a爱片久久毛片| 99精品久久久久中文字幕| 亚洲精品乱码久久久久久蜜桃图片 | 伊人色综合久久| 久久99国产精品二区不卡| 精品熟女少妇a∨免费久久| 午夜精品久久久久久久| 久久无码专区国产精品发布| 无码乱码观看精品久久| 亚洲欧美成人久久综合中文网| 久久99精品国产麻豆婷婷| 国产日韩欧美久久| 国产高清国内精品福利99久久| 国产激情久久久久影院| 国产精品99久久久久久董美香| 国产69精品久久久久9999| 精品久久久久久无码中文野结衣 | 久久99久久99精品免视看动漫| 亚洲级αV无码毛片久久精品|