// »ף¼¼ֱ₪÷¸ (µ¿ָ¯ְּ°¡ ֳ°¡) // Clan
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecClan");
sprintf( buf, "%s : %s", ZMsg( MSG_CHARINFO_CLAN), ZGetMyInfo()->GetClanName());
if (pLabel) pLabel->SetText(buf);
// LV
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecLevel");
if(ZGetMyInfo()->IsAdminGrade())
sprintf( buf, "%s : -- %s", ZMsg( MSG_CHARINFO_LEVEL), ZMsg(MSG_CHARINFO_LEVELMARKER));
else
sprintf( buf, "%s : %d %s", ZMsg( MSG_CHARINFO_LEVEL), ZGetMyInfo()->GetLevel(), ZMsg(MSG_CHARINFO_LEVELMARKER));
if (pLabel) pLabel->SetText(buf);
// XP
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecXP");
sprintf( buf, "%s : %d%%", ZMsg( MSG_CHARINFO_XP), ZGetMyInfo()->GetLevelPercent());
if (pLabel) pLabel->SetText(buf);
// BP
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecBP");
sprintf( buf, "%s : %d", ZMsg( MSG_CHARINFO_BOUNTY), ZGetMyInfo()->GetBP());
if (pLabel) pLabel->SetText(buf);
//ECoins
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecCash");
sprintf( buf, "Coins : %d", ZGetMyInfo()->GetECoins());
if (pLabel) pLabel->SetText(buf);
// HP
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecHP");
sprintf( buf, "%s : %d", ZMsg( MSG_CHARINFO_HP), ZGetMyInfo()->GetHP());
if (pLabel) pLabel->SetText(buf);
// AP
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecAP");
sprintf( buf, "%s : %d", ZMsg( MSG_CHARINFO_AP), ZGetMyInfo()->GetAP());
if (pLabel) pLabel->SetText(buf);
// WT
pLabel = (MLabel*)pRes->FindWidget("Lobby_PlayerSpecWT");
ZMyItemList* pItems= ZGetMyInfo()->GetItemList();
sprintf( buf, "%s : %d/%d", ZMsg( MSG_CHARINFO_WEIGHT), pItems->GetEquipedTotalWeight(), pItems->GetMaxWeight());
if (pLabel) pLabel->SetText(buf);
// ֳ₪³־ ֱ₪÷¸
pLabel = (MLabel*)pRes->FindWidget("Lobby_ChannelName");
sprintf( buf, "%s > %s > %s", ZGetGameClient()->GetServerName(), ZMsg( MSG_WORD_LOBBY), ZGetGameClient()->GetChannelName());
sprintf(buf, "%s", ZGetGameClient()->GetChannelName());
if (pLabel)
pLabel->SetText(buf);
}