CheckCharismaLow()

話しているプレイヤーの魅力の値が10未満かどうか判定します。

int CheckCharismaLow();

Description

会話中のプレイヤーキャラクターの魅力の値が10未満ならTRUEを返します。



Remarks

この関数はnw_i0_plot.nssの658行目にあります。


この関数は常にGetPCSpeaker()で魅力の値を判定するために使われます。なので会話のないところで使用するとFALSEを返します。

これはプレイヤーにどれくらい魅力があるかによって異なった会話の内容を選択するためにBioWareが使用しました。


Requirements

#include "nw_i0_plot"

Version

1.26

Example

//Add as a starting conditional on a conversation thread for a negative NPC reaction

#include "NW_I0_PLOT"

int StartingConditional()
{
    int bUglyLooker = CheckCharismaLow();
    return bUglyLooker;
}

See Also

functions: CheckCharismaHigh | CheckCharismaMiddle | CheckCharismaNormal | CheckIntelligenceHigh | CheckIntelligenceLow | CheckIntelligenceNormal | CheckWisdomHigh
categories: Get Data from Creature Functions


author: John Shuell, editor: Charles Feduke, additional contributor(s): Michael Schirf, JP team: marshall
Send comments on this topic.