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
392 B
Plaintext
13 lines
392 B
Plaintext
|
|
void main()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
object oMaribella=CreateObject(OBJECT_TYPE_CREATURE,"jw_maribella",GetLocation(oPC),TRUE);
|
|
|
|
//PlaySound("mus_sbat_dung1");
|
|
AssignCommand(oPC,ClearAllActions());
|
|
AssignCommand(oMaribella,PlaySound("as_mg_telepin1"));
|
|
AssignCommand(oMaribella,ClearAllActions());
|
|
AssignCommand(oMaribella,ActionStartConversation(oPC,"jw_mirablis_con",FALSE));
|
|
}
|