1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00
sapphire/src/scripts/instances/deepdungeon/ThePalaceoftheDeadFloors2130.cpp

34 lines
No EOL
889 B
C++

#include <ScriptObject.h>
#include <Territory/InstanceContent.h>
using namespace Sapphire;
class ThePalaceoftheDeadFloors2130 :
public Sapphire::ScriptAPI::InstanceContentScript
{
public:
ThePalaceoftheDeadFloors2130() :
Sapphire::ScriptAPI::InstanceContentScript( 60003 )
{ }
void onInit( InstanceContent& instance ) override
{
instance.registerEObj( "sgvf_w_lvd_b0959", 2002872, 6387948, 4, { -300.000000f, -0.116918f, -237.513199f }, 1.000000f, 0.000000f );
// States -> vf_bextwall_on (id: 3) vf_bextwall_on2off (id: 4) vf_bextwall_off (id: 10)
}
void onUpdate( InstanceContent& instance, uint64_t tickCount ) override
{
}
void onEnterTerritory( InstanceContent& instance, Entity::Player& player, uint32_t eventId, uint16_t param1,
uint16_t param2 ) override
{
}
};
EXPOSE_SCRIPT( ThePalaceoftheDeadFloors2130 );