mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
c1e8546d48
add final missing scripts for nt also fix the turnin for the breadcrumb missions not showing the completion window. Fix another missing script Add another script fix include guards Fix dirt clouds not appearing on mission accept
11 lines
377 B
C++
11 lines
377 B
C++
#pragma once
|
|
#include "NtFactionSpyServer.h"
|
|
#include "NtBcSubmitServer.h"
|
|
|
|
class NtDukeServer : public NtFactionSpyServer, public NtBcSubmitServer {
|
|
void SetVariables(Entity* self) override;
|
|
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
|
|
const uint32_t m_SwordMissionID = 1448;
|
|
const LOT m_SwordLot = 13777;
|
|
};
|