mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 00:47:45 +00:00
26 lines
No EOL
584 B
C++
26 lines
No EOL
584 B
C++
#include <ScriptObject.h>
|
|
#include <Zone/InstanceContent.h>
|
|
|
|
class BloodontheDeck : public InstanceContentScript
|
|
{
|
|
public:
|
|
BloodontheDeck() : InstanceContentScript( 5009 )
|
|
{ }
|
|
|
|
void onInit( InstanceContentPtr instance ) override
|
|
{
|
|
|
|
instance->registerEObj( "Unknown0", 2007457, 6904219, 4, { 5.684449f, 16.347240f, 3.782750f }, 1.000000f );
|
|
}
|
|
|
|
void onUpdate( InstanceContentPtr instance, uint32_t currTime ) override
|
|
{
|
|
|
|
}
|
|
|
|
void onEnterTerritory( Entity::Player &player, uint32_t eventId, uint16_t param1, uint16_t param2 ) override
|
|
{
|
|
|
|
}
|
|
|
|
}; |