How i could show SP Info like this picture?. Where i could solve it? DB or Source?
thanks for answer these question :)
http://sv1.upsieutoc.com/2016/10/30/Untitled2a4f8.png
Printable View
How i could show SP Info like this picture?. Where i could solve it? DB or Source?
thanks for answer these question :)
http://sv1.upsieutoc.com/2016/10/30/Untitled2a4f8.png
This question has been asked several times already, next time use search function.
Excellent post. I will be dealing with some of these issues as well..
@Future ...? Release Post?
I don't understand.
For the question: I also believe it's been asked somewhere but I can't find it now because the person asking this probably used a poor thread title like "Help me please"....
Nonetheless it's nothing you can tick and enable. You need to modify the information flow for SPs from the Field Server to the Clients to include such data and then edit the graphical output on the top of your interface. I've not done it myself yet, but that's how it'll work pretty sure (as that's how most of features work).
This packet looks promising:
Code:struct MSG_FC_WAR_STRATEGYPOINT_MONSTER_SUMMON
{// 2007-07-18 by dhjin,
MapIndex_t MapIndex;
BYTE InfluenceType;
CHAR MapName[SIZE_MAX_MAP_NAME];
ATUM_DATE_TIME SummonStrategyPointTime;
};
it is this?
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
VOID CAtumApplication::FieldSocketWarStrategypointMonsterSummon(MSG_FC_WAR_STRATEGYPOINT_MONSTER_SUMMON* pMsg)
{
MAP_INFO* pMapinfo = g_pDatabase->GetMapInfo(pMsg->MapIndex);
char buf[1024] = {0,};
char bufTime[1024] = {0,};
char bufInfluence[64] = {0,};
if(IS_MAP_INFLUENCE_VCN(pMapinfo->MapInfluenceType))
{
wsprintf(bufInfluence, "%s", STRMSG_C_060210_0000);
}
else if(IS_MAP_INFLUENCE_ANI(pMapinfo->MapInfluenceType))
{
wsprintf(bufInfluence, "%s", STRMSG_C_060210_0001);
}
wsprintf(buf, STRMSG_C_061121_0000, bufInfluence, pMapinfo->MapName); // "\\c%sÃø\\c %s Áö¿ª¿¡ Àü·« Æ÷ÀÎÆ®°¡ »ý¼ºµÇ¾ú½À´Ï´Ù."
// ½Ã°£ Á¤º¸
wsprintf(bufTime, STRMSG_C_070712_0209, pMsg->SummonStrategyPointTime.Hour, pMsg->SummonStrategyPointTime.Minute);
// 2007-12-27 by dgwoo
g_pInterface->AddInflWarMonster(buf, pMsg->MapIndex, pMapinfo->MapInfluenceType, pMsg->SummonStrategyPointTime);
}
no my friend
step1: find: AtumApplication.cppstep2: find string "FieldSocketWarMonsterAutoDestroyed"step3: add this code "g_pInterface->DetroySummonMonster(pMsg->MapChannIdx.MapIndex);"
SOLVED?
Hello, please help me !!!
I need to show infomation like image below. I searched day by day but failed:
http://sv1.upsieutoc.com/2016/10/30/Untitled2a4f8.png
https://scontent-mxp1-1.xx.fbcdn.net...ec&oe=59B6D3BB
Why do you need to think for a new feature, if you can copy it :sleep: