/* * 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("orbenchant2", oPC); }