npc quest giver
//:://///////////////////////////////////////////////:: FileName dlg_plott_02//::////////////////////////////////////////////////::////////////////////////////////////////////////:: Created By: Script Wizard//:: Created On: 17-9-2015 7:08:27//:://///////////////////////////////////////////#include "pqj_inc"void main(){// Set the variablesSetLocalInt(GetPCSpeaker(), "iLoveQuest", 100);// Give "letter" to the PC.// Get the PC who is in this conversation.object oPC = GetPCSpeaker();// Give "letter" to the PC.CreateItemOnObject("letter", oPC);// Update the player's journal.AddPersistentJournalQuestEntry("LOVE", 1, oPC, FALSE);}
//:://///////////////////////////////////////////////:: FileName dlg_plott_03b//::////////////////////////////////////////////////::////////////////////////////////////////////////:: Created By: Script Wizard//:: Created On: 17-9-2015 15:57:33//:://////////////////////////////////////////////#include "pqj_inc"void main(){// Give the speaker some goldGiveGoldToCreature(GetPCSpeaker(), 150);// Give the speaker some XPGiveXPToCreature(GetPCSpeaker(), 200);// Remove items from the player's inventoryobject oItemToTake;oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "letter");if(GetIsObjectValid(oItemToTake) != 0)DestroyObject(oItemToTake);// Set the variablesSetLocalInt(GetPCSpeaker(), "iLoveQuest", 200);// Get the PC who is in this conversation.object oPC = GetPCSpeaker();// Update the player's journal.AddPersistentJournalQuestEntry("LOVE", 3, oPC, FALSE);}
in the toolset i get a notification for bad journal entry, the error, and asks me if i wanna remove the tag but it does not matter what i reply the results are the same





Retour en haut






