Alangara_PRC8/_module/nss/ke_g_orbarmor.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

43 lines
1.1 KiB
Plaintext

/*
* Script generated by LS Script Generator, v.TK.0
*
* For download info, please visit:
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
*/
// Put this under "Actions Taken" in the conversation editor.
// Removes all items (with the specified tag, if provided) from oCreature.
void RemoveAllItems(object oCreature, string sTag="");
void RemoveAllItems(object oCreature, string sTag="")
{
object oItem = GetFirstItemInInventory(oCreature);
while ( oItem != OBJECT_INVALID )
{
if ( "" == sTag || GetTag(oItem) == sTag )
DestroyObject(oItem);
oItem = GetNextItemInInventory(oCreature);
}
}
void main()
{
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Take stuff from the PC.
RemoveAllItems(oPC, "bragalhead");
RemoveAllItems(oPC, "gramshhead");
RemoveAllItems(oPC, "thrarhead1");
RemoveAllItems(oPC, "thrarhead");
RemoveAllItems(oPC, "xanxahead");
// Give stuff to the PC.
GiveGoldToCreature(oPC, 50000);
GiveXPToCreature(oPC, 7500);
CreateItemOnObject("questgembruno", oPC);
CreateItemOnObject("orbenchant1", oPC);
}