1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00
sapphire/src/scripts/instances/deepdungeon/ThePalaceoftheDeadFloors181190.cpp

36 lines
No EOL
904 B
C++

#include <ScriptObject.h>
#include <Territory/InstanceContent.h>
using namespace Sapphire;
class ThePalaceoftheDeadFloors181190 :
public Sapphire::ScriptAPI::InstanceContentScript
{
public:
ThePalaceoftheDeadFloors181190() :
Sapphire::ScriptAPI::InstanceContentScript( 60019 )
{
}
void onInit( InstanceContentPtr instance ) override
{
instance->registerEObj( "sgvf_w_lvd_b0959", 2000608, 6534547, 4, { -301.179504f, 0.130118f, -301.014709f },
1.000000f, -0.000000f );
// States -> vf_bextwall_on vf_bextwall_on2off vf_bextwall_off
}
void onUpdate( InstanceContentPtr instance, uint32_t currTime ) override
{
}
void onEnterTerritory( InstanceContentPtr instance, Entity::Player& player, uint32_t eventId, uint16_t param1,
uint16_t param2 ) override
{
}
};
EXPOSE_SCRIPT( ThePalaceoftheDeadFloors181190 );