1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 14:07:46 +00:00
sapphire/src/servers/Scripts/common/HouFurOrchestrion.cpp

20 lines
435 B
C++
Raw Normal View History

2018-03-07 08:14:42 +01:00
#include <Script/NativeScriptApi.h>
#include "../ScriptObject.h"
#include <Actor/Player.h>
class HouFurOrchestrion : public EventScript
{
public:
HouFurOrchestrion() : EventScript( 721226 )
2018-03-20 23:56:06 +11:00
{}
2018-03-07 08:14:42 +01:00
void Scene00000( Entity::Player& player )
{
2018-03-20 22:33:51 +11:00
player.playScene( getId(), 0, 0x2000, 0, 1 );
2018-03-07 08:14:42 +01:00
}
void onTalk( uint32_t eventId, Entity::Player& player, uint64_t actorId ) override
{
Scene00000( player );
}
};