本文整理汇总了C++中PlayerPointer::CanSignCharter方法的典型用法代码示例。如果您正苦于以下问题:C++ PlayerPointer::CanSignCharter方法的具体用法?C++ PlayerPointer::CanSignCharter怎么用?C++ PlayerPointer::CanSignCharter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PlayerPointer
的用法示例。
在下文中一共展示了PlayerPointer::CanSignCharter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: HandleCharterOffer
void WorldSession::HandleCharterOffer( WorldPacket & recv_data )
{
uint32 shit;
uint64 item_guid, target_guid;
Charter * pCharter;
recv_data >> shit >> item_guid >> target_guid;
if(!_player->IsInWorld()) return;
PlayerPointer pTarget = _player->GetMapMgr()->GetPlayer((uint32)target_guid);
pCharter = objmgr.GetCharterByItemGuid(item_guid);
if( pCharter == NULL )
{
SendNotification("Charter cannot be found.");
return;
}
if(pTarget == 0 || pTarget->GetTeam() != _player->GetTeam() || pTarget == _player)
{
SendNotification("Target is of the wrong faction.");
return;
}
if(!pTarget->CanSignCharter(pCharter, _player))
{
SendNotification("Target player cannot sign your charter for one or more reasons.");
return;
}
SendShowSignatures(pCharter, item_guid, pTarget);
}