mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
6b30292efd
The dropship computer now no longer gives a player a second mission item should they interact with it again after mission completion
14 lines
376 B
C++
14 lines
376 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AmDropshipComputer : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
void OnUse(Entity* self, Entity* user) override;
|
|
void OnDie(Entity* self, Entity* killer) override;
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
private:
|
|
const LOT m_NexusTalonDataCard = 12323;
|
|
};
|