**Eski kod:**
g_pMain->SetString(pus_items[j].price,string_format(xorstr("%s %s"), g_pMain->StringHelper->NumberFormat(tmpList.Price).c_str(), (tmpList.isTlBalance == 1 ? "TL" : "KC")));
**Yeni kod:**
g_pMain->SetString(pus_items[j].price,string_format(xorstr("%s %s"), g_pMain->StringHelper->NumberFormat(tmpList.Price).c_str(), (tmpList.isTlBalance == 1 ? "coins" : "KC")));
**Eski kod:**
std::string ncash = string_format("%s %s", g_pMain->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "TL" : " KnightCash"));
**Yeni kod:**
std::string ncash = string_format("%s %s", g_pMain->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "coins" : " KnightCash"));
**Eski kod:**
std::string ncash = string_format("%s %s", g_pMain->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "TL" : " KnightCash"));
**Yeni kod:**
std::string ncash = string_format("%s %s", g_pMain->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "coins" : " KnightCash"));
PowerUpStore.cpp
**Eski kod:**
pus_items[j].price->SetString(string_format(xorstr("%s %s"), Engine->StringHelper->NumberFormat(tmpList.Price).c_str(),(tmpList.isTlBalance==1 ? "TL" : "KC")));
**Yeni kod:**
pus_items[j].price->SetString(string_format(xorstr("%s %s"), Engine->StringHelper->NumberFormat(tmpList.Price).c_str(),(tmpList.isTlBalance==1 ? "coins" : "KC")));
**Eski kod:**
std::string ncash = string_format("%s %s", Engine->StringHelper->NumberFormat(Price).c_str(),(PriceType==1 ? "TL" :" KnightCash"));
**Yeni kod:**
std::string ncash = string_format("%s %s", Engine->StringHelper->NumberFormat(Price).c_str(),(PriceType==1 ? "coins" :" KnightCash"));
**Eski kod:**
std::string ncash = string_format("%s %s", Engine->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "TL" : " KnightCash"));
**Yeni kod:**
std::string ncash = string_format("%s %s", Engine->StringHelper->NumberFormat(Price).c_str(), (PriceType == 1 ? "coins" : " KnightCash"));
HSACSEngine.cpp
**Eski kod:**
g_pMain->WriteInfoMessageExt((char*)string_format(xorstr("Received %d tl balance."), sTLCash - g_pMain->pClientUIState->m_iBalance).c_str(), 0xFFF2AB);
**Yeni kod:**
g_pMain->WriteInfoMessageExt((char*)string_format(xorstr("Received %d coins."), sTLCash - g_pMain->pClientUIState->m_iBalance).c_str(), 0xFFF2AB);
**Eski kod:**
g_pMain->WriteInfoMessageExt((char*)string_format(xorstr("Lost %d tl balance."), g_pMain->pClientUIState->m_iBalance - sTLCash).c_str(), 0xFF0000);
**Yeni kod:**
g_pMain->WriteInfoMessageExt((char*)string_format(xorstr("Lost %d coins."), g_pMain->pClientUIState->m_iBalance - sTLCash).c_str(), 0xFF0000);