1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 15:17:46 +00:00
sapphire/src/servers/Scripts/common/CmnDefCutSceneReplay.cpp

38 lines
956 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 CmnDefCutSceneReplay : public EventScript
{
public:
CmnDefCutSceneReplay() : EventScript( 721028 )
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
auto callback = [this]( Entity::Player& player, const Event::SceneResult& result )
2018-03-07 08:14:42 +01:00
{
if( result.param2 != 0 )
2018-03-07 08:14:42 +01:00
{
Scene00001( player, result.param2 );
2018-03-07 08:14:42 +01:00
}
};
2018-03-20 22:33:51 +11:00
player.playScene( getId(), 0, 0x2000, 0, 1, callback );
2018-03-07 08:14:42 +01:00
}
void Scene00001( Entity::Player& player, uint16_t returnScene )
{
auto callback = []( Entity::Player& player, const Event::SceneResult& result )
2018-03-07 08:14:42 +01:00
{
// todo: this is fucked
};
2018-03-20 22:33:51 +11:00
player.playScene( getId(), 1, 0xFB2EC8F8, 0, 1, returnScene, callback );
2018-03-07 08:14:42 +01:00
}
void onTalk( uint32_t eventId, Entity::Player& player, uint64_t actorId ) override
{
Scene00000( player );
}
};