In the v2.20 client, cityhall officer offers you to get the Hero's Cape, now he will offers you to get the Hero's Items, with a new sub-menu that displays the item list.
It works like in the official 3.51 client but i was too lazy to add the REAL TEXTS... You can edit it, but i dont think it will fuck your gaming experience if you miss two words...

<a href='http://img373.imageshack.us/my.php?imag ... 0091nl.jpg' target='_blank'>Screenshot of the Cityhall Menu</a>
<a href='http://img350.imageshack.us/my.php?imag ... 0089vv.jpg' target='_blank'>Screenshot of the Hero's Items Menu</a>
<span style='color:red'>Step One, Change Dialogs</span>
<span style='color:red'>Open lan_eng.h</span>
Replace the existing Cityhall Menu Dialogs with these ones :
Code: Select all
// 3.51 Cityhall Menu - Diuuude
#define DRAW_DIALOGBOX_CITYHALL_MENU8 "Take the HERO's items."
#define DRAW_DIALOGBOX_CITYHALL_MENU46 "Here are the available HERO's items :"
#define DRAW_DIALOGBOX_CITYHALL_MENU47 "Hero's Cape (EK 300)"
#define DRAW_DIALOGBOX_CITYHALL_MENU48 "Hero's Helm (EK 150 - Contrib 20)"
#define DRAW_DIALOGBOX_CITYHALL_MENU49 "Hero's Cap (EK 100 - Contrib 20)"
#define DRAW_DIALOGBOX_CITYHALL_MENU50 "Hero's Armor (EK 300 - Contrib 30)"
#define DRAW_DIALOGBOX_CITYHALL_MENU51 "Hero's Robe (EK 200 - Contrib 20)"
#define DRAW_DIALOGBOX_CITYHALL_MENU52 "Hero's Hauberk (EK 100 - Contrib 10)"
#define DRAW_DIALOGBOX_CITYHALL_MENU53 "Hero's Leggings (EK 150 - Contrib 15)"
<span style='color:red'>Open game.cpp</span>
<span style='color:blue'>In Function DrawDialogBox_CityHallMenu</span>
Find :
Code: Select all
if (m_iEnemyKillCount >= 300) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 120) && (msY < sY + 145))
PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 255,255,255);//"¿µ¿õÀÇ ¸ÁÅ並 ¹Þ½À´Ï´Ù."
else PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 4,0,50);//"¿µ¿õÀÇ ¸ÁÅ並 ¹Þ½À´Ï´Ù."
}
else PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 65,65,65);//"¿µ¿õÀÇ ¸ÁÅ並 ¹Þ½À´Ï´Ù."
Code: Select all
// 3.51 Cityhall Menu - Diuuude
if ((m_iEnemyKillCount >= 100) && (m_iContribution >= 10)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 120) && (msY < sY + 145))
PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 255,255,255);
else PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 4,0,50);
}
else PutAlignedString(sX, sX + szX, sY + 120, DRAW_DIALOGBOX_CITYHALL_MENU8, 65,65,65);
Still in the same function, replace the whole "case 7" with this one :
Code: Select all
// 3.51 Cityhall Menu - Diuuude
case 7:
PutAlignedString(sX, sX + szX, sY + 60, DRAW_DIALOGBOX_CITYHALL_MENU46, 255,255,255);// Here are the Hero's Item available :
// Hero's Cape (EK 300)
if (m_iEnemyKillCount >= 300) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 95) && (msY < sY + 110))
PutAlignedString(sX, sX + szX, sY + 95, DRAW_DIALOGBOX_CITYHALL_MENU47, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 95, DRAW_DIALOGBOX_CITYHALL_MENU47, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 95, DRAW_DIALOGBOX_CITYHALL_MENU47, 65,65,65);// Disabled Mode
// Hero's Helm (EK 150 - Contrib 20)
if ((m_iEnemyKillCount >= 150) && (m_iContribution >= 20)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 125) && (msY < sY + 140))
PutAlignedString(sX, sX + szX, sY + 125, DRAW_DIALOGBOX_CITYHALL_MENU48, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 125, DRAW_DIALOGBOX_CITYHALL_MENU48, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 125, DRAW_DIALOGBOX_CITYHALL_MENU48, 65,65,65);// Disabled Mode
// Hero's Cap (EK 100 - Contrib 20)
if ((m_iEnemyKillCount >= 100) && (m_iContribution >= 20)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 155) && (msY < sY + 170))
PutAlignedString(sX, sX + szX, sY + 155, DRAW_DIALOGBOX_CITYHALL_MENU49, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 155, DRAW_DIALOGBOX_CITYHALL_MENU49, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 155, DRAW_DIALOGBOX_CITYHALL_MENU49, 65,65,65);// Disabled Mode
// Hero's Armor (EK 300 - Contrib 30)
if ((m_iEnemyKillCount >= 300) && (m_iContribution >= 30)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 185) && (msY < sY + 200))
PutAlignedString(sX, sX + szX, sY + 185, DRAW_DIALOGBOX_CITYHALL_MENU50, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 185, DRAW_DIALOGBOX_CITYHALL_MENU50, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 185, DRAW_DIALOGBOX_CITYHALL_MENU50, 65,65,65);// Disabled Mode
// Hero's Robe (EK 200 - Contrib 20)
if ((m_iEnemyKillCount >= 200) && (m_iContribution >= 20)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 215) && (msY < sY + 230))
PutAlignedString(sX, sX + szX, sY + 215, DRAW_DIALOGBOX_CITYHALL_MENU51, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 215, DRAW_DIALOGBOX_CITYHALL_MENU51, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 215, DRAW_DIALOGBOX_CITYHALL_MENU51, 65,65,65);// Disabled Mode
// Hero's Hauberk (EK 100 - Contrib 10)
if ((m_iEnemyKillCount >= 100) && (m_iContribution >= 10)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 245) && (msY < sY + 260))
PutAlignedString(sX, sX + szX, sY + 245, DRAW_DIALOGBOX_CITYHALL_MENU52, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 245, DRAW_DIALOGBOX_CITYHALL_MENU52, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 245, DRAW_DIALOGBOX_CITYHALL_MENU52, 65,65,65);// Disabled Mode
// Hero's Leggings (EK 150 - Contrib 15)
if ((m_iEnemyKillCount >= 150) && (m_iContribution >= 15)) {
if ((msX > sX + 35) && (msX < sX + 220) && (msY > sY + 275) && (msY < sY + 290))
PutAlignedString(sX, sX + szX, sY + 275, DRAW_DIALOGBOX_CITYHALL_MENU53, 255,255,255);// On mouse over Mode
else PutAlignedString(sX, sX + szX, sY + 275, DRAW_DIALOGBOX_CITYHALL_MENU53, 4,0,50);// Normal Mode
}
else PutAlignedString(sX, sX + szX, sY + 275, DRAW_DIALOGBOX_CITYHALL_MENU53, 65,65,65);// Disabled Mode
break;
<span style='color:blue'>In Function DlgBoxClick_CityhallMenu</span>
Replace the whole "case 7" with this one :
Code: Select all
case 7:
// 3.51 Cityhall Menu - Diuuude
int iReqHeroItemID;
// Hero's Cape
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 95) && (msY <= sY + 110)) {
if(m_bAresden == TRUE) iReqHeroItemID = 400;
else iReqHeroItemID = 401;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Helm
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 125) && (msY <= sY + 140)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 403;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 404;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 405;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 406;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Cap
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 155) && (msY <= sY + 170)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 407;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 408;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 409;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 410;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Armor
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 185) && (msY <= sY + 200)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 411;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 412;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 413;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 414;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Robe
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 215) && (msY <= sY + 230)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 415;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 416;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 417;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 418;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Hauberk
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 245) && (msY <= sY + 260)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 419;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 420;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 421;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 422;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
// Hero's Leggings
if ((msX >= sX + 35) && (msX <= sX + 220) && (msY >= sY + 275) && (msY <= sY + 290)){
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 423;
if((m_bAresden == TRUE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 424;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 1)) iReqHeroItemID = 425;
if((m_bAresden == FALSE) && (m_pCharList[m_cCurFocus-1]->m_sSex == 2)) iReqHeroItemID = 426;
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQ_GETHEROMANTLE, NULL, iReqHeroItemID, NULL, NULL, NULL);
m_stDialogBoxInfo[13].cMode = 0;
PlaySound('E', 14, 5);
}
break;