Initial upload
Initial upload
This commit is contained in:
22
_module/nss/journaltrigger5.nss
Normal file
22
_module/nss/journaltrigger5.nss
Normal file
@@ -0,0 +1,22 @@
|
||||
//Put this script OnEnter
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
if (GetItemPossessedBy(oPC, "journaltoken5")!= OBJECT_INVALID)
|
||||
return;
|
||||
|
||||
if (GetItemPossessedBy(oPC, "journaltoken5")== OBJECT_INVALID)
|
||||
{
|
||||
CreateItemOnObject("journaltoken5", oPC);
|
||||
|
||||
FloatingTextStringOnCreature("Your Journal Has Been Update, Please Read by pressing J.", oPC);
|
||||
|
||||
AddJournalQuestEntry("requirements", 1, oPC, FALSE, FALSE);
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user