23 lines
409 B
Plaintext
23 lines
409 B
Plaintext
|
|
#include "nw_i0_tool"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oItem;
|
|
oItem = GetItemPossessedBy(oPC, "QUEST_SHARK_TOOTH");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
RewardPartyXP(200, oPC, FALSE);
|
|
|
|
RewardPartyGP(200, oPC, FALSE);
|
|
|
|
CreateItemOnObject("recall_aquelf", oPC);
|
|
|
|
object oDatabase = GetItemPossessedBy(oPC,"Database");
|
|
SetLocalInt(oDatabase, "AQUATICELF_QST1", 100);
|
|
}
|
|
|