11 lines
268 B
Plaintext
11 lines
268 B
Plaintext
#include "sfcs_functs"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
SetLocalString(OBJECT_SELF, "BONUS", "MAGICAL");
|
|
SetLocalInt(OBJECT_SELF, "NOT_ABORTED", TRUE);
|
|
ActionDoCommand(SetMenuText());
|
|
ActionWait(0.25);
|
|
ActionStartConversation(oPC);
|
|
}
|