20 lines
613 B
Plaintext
20 lines
613 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName king_give_1
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 22/11/2003 15:59:15
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oParty = GetFirstFactionMember(oPC, TRUE);
|
|
if (GetIsPC(oParty))
|
|
{
|
|
// Give the speaker the items
|
|
CreateItemOnObject("sarumroyalseal", oParty, 1);
|
|
SetLocalInt(oParty, "sarumseal", 1);
|
|
}
|
|
oParty = GetNextFactionMember(oPC, TRUE);
|
|
}
|