16 lines
238 B
Plaintext
16 lines
238 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
GiveXPToCreature(oPC, 50);
|
||
|
|
||
|
// Set the variables
|
||
|
SetLocalInt(GetPCSpeaker(), "Worship", 1);
|
||
|
|
||
|
AdjustAlignment(oPC, ALIGNMENT_LAWFUL, 10);
|
||
|
|
||
|
}
|