Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
24 lines
557 B
Plaintext
24 lines
557 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: swt_boy_taunt
|
|
//:: swt_boy_taunt.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Lysandius
|
|
//:: Created On: 09-07-2002
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
int nValue = d4();
|
|
if(nValue == 1)
|
|
SpeakString("You can't catch me!");
|
|
if(nValue == 2)
|
|
SpeakString("Hihi!");
|
|
if(nValue == 3)
|
|
SpeakString("Run faster!");
|
|
}
|