NWNDS/nwn_dark_sun/at_gearytoss_003.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

17 lines
478 B
Plaintext

void main()
{
object oClicker = GetClickingObject();
object oTarget = GetTransitionTarget(OBJECT_SELF);
location lLoc = GetLocation(oTarget);
AssignCommand(oClicker,JumpToLocation(lLoc));
object oBracelet = GetItemPossessedBy(oClicker,"QST_GEARYSBRACE");
if(GetIsObjectValid(oBracelet) != 0)
{
SetLocalInt(oClicker,"thievesquests",2);
SetLocalInt(oClicker,"pickpocket",1);
AddJournalQuestEntry ("thievesquests", 2, oClicker);
}
}