mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
11 lines
362 B
C++
11 lines
362 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class NpcNjAssistantServer : public CppScripts::Script {
|
|
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState);
|
|
|
|
private:
|
|
int mailMission = 1728; //mission to get the item out of your mailbox
|
|
int mailAchievement = 1729; // fun fact: spelled "Achivement" in the actual script
|
|
};
|