WoR_PRC8/_module/nss/ice_blade_hole2.nss

11 lines
310 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
string sSayThis;
int iTalkVolume = TALKVOLUME_TALK;
int iTalkFlag = 0;
void main()
{
object oPC = GetClickingObject();
sSayThis = "This is where I slid down here. It is too slippery to climb back up.";
AssignCommand(oPC, ClearAllActions(TRUE));
AssignCommand(oPC, ActionSpeakString(sSayThis, iTalkVolume));
}