码迷,mamicode.com
首页 > 其他好文 > 详细

T端判断装备等级

时间:2014-05-28 04:11:14      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

bubuko.com,布布扣
GetProto()->ItemLevel  
判断装备等级
 
HandleBattleFieldPortOpcode 
进入战场,。
 
 
bool ChatHandler::HandlegetHitemlvlCommand(const char* args)
{
    Player* target;
    uint64 target_guid;
    std::string target_name;
    uint32 itemlevel = 0;
    if (!extractPlayerTarget((char*)args,&target,&target_guid,&target_name))
        return false;
    Player* _player = m_session->GetPlayer();
    if (target)
    {
        for(int slot = EQUIPMENT_SLOT_START; slot < EQUIPMENT_SLOT_END; ++slot)
        {
            Item *pItem = target->GetItemByPos( INVENTORY_SLOT_BAG_0, slot );
            if(!pItem)
                continue;
            if(itemlevel < pItem->GetProto()->ItemLevel)
                itemlevel = pItem->GetProto()->ItemLevel;
        }
        PSendSysMessage("Most Hight itemlevel = %d ",itemlevel);
        return true;
    }
    
} 
bubuko.com,布布扣

 

T端判断装备等级,布布扣,bubuko.com

T端判断装备等级

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/needly/p/3753177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!