TalentSkill(int)
スキルのタレントを作成します。
talent TalentSkill( int nSkill );
Parameters
nSkill
Description
スキルのタレントを作成します。
Remarks
SKILL_*定数はskills.2daの数字列を反映します。
Version
1.30
Example
//呼出者に最も近い非PCを挑発させるC
void main()
{
//使用するスキルを決定
talent tTaunt=TalentSkill(SKILL_TAUNT);
object oCreature=GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_NOT_PC);
ActionUseTalentOnObject(tTaunt, oCreature);
}
See Also
| functions: | TalentFeat | TalentSpell |
| categories: | Talents/Skills/Feats Functions |
| constants: | SKILL_* Constants |
author: Lilac Soul, JP team: Rainie
Send comments on this topic.