mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-13 19:48:26 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
57
dScripts/NsGetFactionMissionServer.cpp
Normal file
57
dScripts/NsGetFactionMissionServer.cpp
Normal file
@@ -0,0 +1,57 @@
|
||||
#include "NsGetFactionMissionServer.h"
|
||||
#include "GameMessages.h"
|
||||
#include "MissionComponent.h"
|
||||
#include "Character.h"
|
||||
|
||||
void NsGetFactionMissionServer::OnRespondToMission(Entity* self, int missionID, Entity* player, int reward)
|
||||
{
|
||||
if (missionID != 474) return;
|
||||
|
||||
if (reward != LOT_NULL) {
|
||||
std::vector<int> factionMissions;
|
||||
int celebrationID = -1;
|
||||
int flagID = -1;
|
||||
|
||||
if (reward == 6980) {
|
||||
// Venture League
|
||||
factionMissions = { 555, 556 };
|
||||
celebrationID = 14;
|
||||
flagID = 46;
|
||||
}
|
||||
else if (reward == 6979) {
|
||||
// Assembly
|
||||
factionMissions = { 544, 545 };
|
||||
celebrationID = 15;
|
||||
flagID = 47;
|
||||
}
|
||||
else if (reward == 6981) {
|
||||
// Paradox
|
||||
factionMissions = { 577, 578 };
|
||||
celebrationID = 16;
|
||||
flagID = 48;
|
||||
}
|
||||
else if (reward == 6978) {
|
||||
// Sentinel
|
||||
factionMissions = { 566, 567 };
|
||||
celebrationID = 17;
|
||||
flagID = 49;
|
||||
}
|
||||
|
||||
factionMissions.push_back(778);
|
||||
|
||||
if (celebrationID != -1) {
|
||||
GameMessages::SendStartCelebrationEffect(player, player->GetSystemAddress(), celebrationID);
|
||||
}
|
||||
|
||||
if (flagID != -1) {
|
||||
player->GetCharacter()->SetPlayerFlag(flagID, true);
|
||||
}
|
||||
|
||||
MissionComponent* mis = static_cast<MissionComponent*>(player->GetComponent(COMPONENT_TYPE_MISSION));
|
||||
|
||||
for (int mission : factionMissions) {
|
||||
mis->AcceptMission(mission);
|
||||
mis->CompleteMission(mission);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user