2022-06-14 15:54:28 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class NPCType : MonoBehaviour
|
|
|
|
{
|
2022-06-15 16:32:14 +02:00
|
|
|
|
|
|
|
public GameObject lumberjack;
|
2022-06-14 15:54:28 +02:00
|
|
|
public int isQuest;
|
2022-06-15 16:32:14 +02:00
|
|
|
public string name;
|
|
|
|
|
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
NPCDialogue npcdialogue = lumberjack.GetComponent<NPCDialogue>();
|
|
|
|
name = npcdialogue.name;
|
2022-10-02 18:45:58 +02:00
|
|
|
|
2022-12-06 01:20:01 +01:00
|
|
|
if (OnMapAppearanceMethod.IsNewGame())
|
2022-06-15 19:54:44 +02:00
|
|
|
{
|
2022-10-02 18:45:58 +02:00
|
|
|
isQuest = 1; // TODO I guess we decide here if quest is available for player from the very beginning
|
2022-06-15 19:54:44 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-02 18:45:58 +02:00
|
|
|
isQuest = PlayerPrefs.GetInt(name + "-S");
|
2022-06-15 19:54:44 +02:00
|
|
|
}
|
2022-10-02 18:45:58 +02:00
|
|
|
|
2022-06-15 16:32:14 +02:00
|
|
|
npcdialogue.isQuest = isQuest;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
NPCDialogue npcdialogue = lumberjack.GetComponent<NPCDialogue>();
|
|
|
|
isQuest = npcdialogue.isQuest;
|
|
|
|
PlayerPrefs.SetInt(name, isQuest);
|
|
|
|
}
|
2022-06-15 19:54:44 +02:00
|
|
|
|
|
|
|
public void SaveCheckpoint()
|
|
|
|
{
|
|
|
|
NPCDialogue npcdialogue = lumberjack.GetComponent<NPCDialogue>();
|
|
|
|
isQuest = npcdialogue.isQuest;
|
2022-10-02 18:45:58 +02:00
|
|
|
PlayerPrefs.SetInt(name + "-S", isQuest);
|
2022-06-15 19:54:44 +02:00
|
|
|
}
|
2022-06-14 15:54:28 +02:00
|
|
|
}
|