16 lines
475 B
Plaintext
16 lines
475 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastSpeaker();
|
|
int nRoll=d20();
|
|
int nRank=GetSkillRank (SKILL_LISTEN, oPC);
|
|
int nResult=nRoll+nRank;
|
|
string sRoll=IntToString(nRoll);
|
|
string sRank=IntToString(nRank);
|
|
string sResult=IntToString(nResult);
|
|
string sAbility="Listen";
|
|
AssignCommand( oPC, ActionPlayAnimation (ANIMATION_LOOPING_GET_MID, 3.0, 3.0));
|
|
AssignCommand( oPC, SpeakString(sAbility+" Check, Roll: "+sRoll+" Modifier: "+sRank+" = "+sResult));
|
|
|
|
}
|
|
|