WoR_PRC8/_module/nss/ice_blade_hole2.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

11 lines
310 B
Plaintext

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));
}