Changed folder name.
Changed folder name.
This commit is contained in:
15
_module/nss/ew_wischecko.nss
Normal file
15
_module/nss/ew_wischecko.nss
Normal file
@@ -0,0 +1,15 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetLastSpeaker();
|
||||
int nRoll=d20();
|
||||
int nRank=GetAbilityModifier (ABILITY_WISDOM, oPC);
|
||||
int nResult=nRoll+nRank;
|
||||
string sRoll=IntToString(nRoll);
|
||||
string sRank=IntToString(nRank);
|
||||
string sResult=IntToString(nResult);
|
||||
string sAbility="Wisdom";
|
||||
AssignCommand( oPC, ActionPlayAnimation (ANIMATION_LOOPING_GET_MID, 3.0, 3.0));
|
||||
AssignCommand( oPC, SpeakString(sAbility+" Check, Roll: "+sRoll+" Modifier: "+sRank+" = "+sResult));
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user