Rune_PRC8/_module/nss/tal_conv_chuckle.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

64 lines
1.5 KiB
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Talus Menu on Rest
// tal_conv_chuckle
// OPW Integration and Clean Up By Don Anderson
// dandersonru@msn.com
//
// Used in Rest Menu Conversation
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oPC=GetPCSpeaker();
object oTarg=GetLocalObject(oPC,"targ"+IntToString(GetLocalInt(oPC,"convtarg")));
string targname=GetName(oTarg);
string message;
string alword;
switch(GetAlignmentGoodEvil(oPC))
{
case ALIGNMENT_GOOD:
switch(d4())
{
case 1:alword="warmly";break;
case 2:alword="heartily";break;
case 3:alword="jovialy";break;
case 4:alword="happily";break;
}
break;
case ALIGNMENT_NEUTRAL:
switch(d4())
{
case 1:alword="rascally";break;
case 2:alword="mischievous";break;
case 3:alword="coyly";break;
case 4:alword="playfully";break;
}
break;
case ALIGNMENT_EVIL:
switch(d4())
{
case 1:alword="wickedly";break;
case 2:alword="devilishly";break;
case 3:alword="fiendishly";break;
case 4:alword="impishly";break;
}
break;
}
switch(d4())
{
case 1:message="*chuckles "+alword+"*";break;
case 2:message="*chuckles "+alword+" at "+targname+"*";break;
case 3:message="*laughs "+alword+"*";break;
case 4:message="*laughs "+alword+" at "+targname+"*";break;
}
AssignCommand(oPC,SpeakString(message,TALKVOLUME_TALK));
}