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.
13 lines
335 B
Plaintext
13 lines
335 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastUsedBy();
|
|
if(GetIsSkillSuccessful(oPC,SKILL_LORE,33))
|
|
{
|
|
SpeakString("Lost, all is lost. The world warps and twists below, no longer can we stay. Our hopes to redeem those who fell along Araushnee are now lost.");
|
|
}
|
|
else
|
|
{
|
|
SpeakString("["+GetName(oPC)+" tries in vain to read the ancient runes]");
|
|
}
|
|
}
|