1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00

Merge pull request #430 from NotAdam/housing

HousingAethernet
This commit is contained in:
Mordred 2018-11-21 09:23:55 +01:00 committed by GitHub
commit df0f5a26d1
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,42 @@
#include <ScriptObject.h>
#include <Actor/Player.h>
#include <Framework.h>
#include <Exd/ExdDataGenerated.h>
#include <Zone/Zone.h>
using namespace Core;
class HousingAethernet :
public Sapphire::ScriptAPI::EventScript
{
public:
HousingAethernet() :
Sapphire::ScriptAPI::EventScript( 0x001E0000 )
{
}
void onTalk( uint32_t eventId, Entity::Player& player, uint64_t actorId ) override
{
player.playScene( eventId, 0, HIDE_HOTBAR | NO_DEFAULT_CAMERA, [this, eventId]( Entity::Player& player, const Event::SceneResult& result )
{
auto pExdData = getFramework()->get< Core::Data::ExdDataGenerated >();
if( !pExdData )
return;
auto housingAethernetIds = pExdData->getHousingAethernetIdList();
auto terrritoryTypeId = player.getCurrentZone()->getTerritoryTypeId();
// param2 is the index starting from 0 inside housingaethernet.exd, but the ID column starts at 0x001E0000........ wtf
auto pHousingAethernet = pExdData->get< Core::Data::HousingAethernet >( getId() + result.param2 );
if( !pHousingAethernet )
return;
// check we're teleporting to the same territorytype
if( player.getCurrentZone()->getTerritoryTypeId() != pHousingAethernet->territoryType )
return;
player.sendDebug( "got level entry: " + std::to_string( pHousingAethernet->level ) );
} );
}
};

View file

@ -69,6 +69,7 @@ namespace Core::Event
Story = 0x001A,
SpecialShop = 0x001B,
BahamutGuide = 0x001C,
HousingAethernet = 0x001E,
FcTalk = 0x001F,
ICDirector = 0x8003,
};