Script for aborting a wbl zone transfer (#766)

This commit is contained in:
Aaron Kimbrell
2022-09-02 13:49:38 -05:00
committed by GitHub
parent 26f2eb409f
commit 14d4bf3cc5
4 changed files with 29 additions and 0 deletions

10
dScripts/WblGenericZone.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "CppScripts.h"
class WblGenericZone : public CppScripts::Script
{
public:
void OnFireEventServerSide(Entity* self, Entity* sender, std::string args, int32_t param1, int32_t param2, int32_t param3) override;
private:
const LWOMAPID m_WblMainZone = 1600;
const std::string m_WblAbortMsg = "AbortWBLZone";
};