Initial Upload
Initial Upload
This commit is contained in:
9
_module/nss/take_dryad_boots.nss
Normal file
9
_module/nss/take_dryad_boots.nss
Normal file
@@ -0,0 +1,9 @@
|
||||
// NPC take item from PC script
|
||||
void main()
|
||||
{
|
||||
object oItemToTake;
|
||||
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "DryadBoots"); // Place item Tag here
|
||||
if(GetIsObjectValid(oItemToTake) != 0)
|
||||
DestroyObject(oItemToTake);
|
||||
DeleteLocalInt(GetPCSpeaker(), "DryadQuest");
|
||||
}
|
Reference in New Issue
Block a user