Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Source VS2019 Main 5.2 + Louis Emulator 5.2 UP15 + Cashshop Included  (Visto 101335 veces)

vokirval and 1 Guest are viewing this topic.

Offline muccone #120 Posteado: March 08, 2022, 01:58:24 AM | Modificado: March 08, 2022, 04:09:56 AM by muccone

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 50
  • Gracias recibida: 171
  • tw



modify UI Main

void BeginOpengl(int x,int y,int Width,int Height )

Height = 480;


Telegram Account :@mucone    develop Mu

Gracias:


Offline 6atters #121 Posteado: March 09, 2022, 01:24:27 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 447
  • Gracias recibida: 2529
  • ru
Client+Server+Sources
 

Citar
password unzip: tuservermu.com.ve

GetMain??ip config client??


Offline backerchen #122 Posteado: March 09, 2022, 01:34:52 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 20
  • Gracias recibida: 4
//HealthBar 100%
void RenderMonsterHP()
{

   float   Width = 38.f;
   char    Text[100];
   for (int j = 0; j < MAX_CHARACTERS_CLIENT; ++j)
   {
      CHARACTER* c = &CharactersClient[j];
      OBJECT* o = &c->Object;
      vec3_t      Position;
      int         ScreenX, ScreenY;


      if (KIND_MONSTER == c->Object.Kind && MODEL_PLAYER != c->Object.Type && c->Object.Kind != KIND_TRAP)
      {
         BYTE LifePercent = 80;
         


         Vector(o->Position[0], o->Position[1], o->Position[2] + o->BoundingBoxMax[2] + 100.f, Position);
         Projection(Position, &ScreenX, &ScreenY);
         ScreenX -= (int)(Width / 2);
         if (o->Live && KIND_NPC != c->Object.Kind)
         {
         
            
            NEW_HEALTH_BAR* lpNewHealthBar = GetNewHealthBar(c->Key, c->Object.Kind);
         
            if (lpNewHealthBar == NULL)continue;

            int LifePercent = lpNewHealthBar->rate ;
            int ShieldPercent = lpNewHealthBar->rate2 ;
            float iHP = (float)(LifePercent * 72) / 100;
            SEASON3B::RenderImage(BITMAP_MONSTER_HPBAR_BACK, ScreenX, ScreenY - 5, 75.f, 5.f);
            if(c->Dead != 0)
            {
               iHP -= c->Dead;
               if (iHP <= 0)
               {
                  iHP = 0;
               }
            }
            SEASON3B::RenderImage(BITMAP_MONSTER_HPBAR, ScreenX + 2, ScreenY - 4, iHP, 3.f);
            
            g_pRenderText->SetFont(g_hFont);
            if (c->Dead != 0)
            {
               sprintf(Text, "%s die...", c->ID);
            }
            else
            {
               sprintf(Text, "%s", c->ID);
            }
            g_pRenderText->SetTextColor(255, 230, 210, 255);
            g_pRenderText->RenderText(ScreenX, ScreenY - 13, Text, 75.f, 0, RT3_SORT_CENTER);
            
            
         }
      }
   }
   glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
   DisableAlphaBlend();
   glColor3f(1.f, 1.f, 1.f);
}



BITMAP_MONSTER_HPBAR file ?

Gracias:


Offline Alinor #123 Posteado: March 09, 2022, 01:40:35 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 17
  • Gracias recibida: 29
  • cx
Client+Server+Sources
 

Citar
password unzip: tuservermu.com.ve

GetMain??ip config client??

ip config in source main ZzzScene.cpp


Offline jorge2016 #124 Posteado: May 25, 2022, 01:54:41 AM | Modificado: January 26, 2023, 10:06:36 PM by jorge2016

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2164
  • uy

Offline Odisk #125 Posteado: May 25, 2022, 01:48:41 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 895
  • Gracias recibida: 14054
  • pr
alguien le sucede que al logearse si la cuenta es:   test  -  test  ,  poniendo de contraseña ( testttt ) o ( testuiii ) lo que sea ingresa igual y no indica " contraseña incorrecta "

si mal no estoy tienes que desactivar el modo dev

one day

Offline jorge2016 #126 Posteado: May 25, 2022, 02:46:50 PM | Modificado: January 26, 2023, 10:07:10 PM by jorge2016

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2164
  • uy
alguien le sucede que al logearse si la cuenta es:   test  -  test  ,  poniendo de contraseña ( testttt ) o ( testuiii ) lo que sea ingresa igual y no indica " contraseña incorrecta "

si mal no estoy tienes que desactivar el modo dev

@ZabiinoOo borrar mi post gracias


Offline mkslep #127 Posteado: May 28, 2022, 08:23:42 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 16
  • Gracias recibida: 11
  • br
Como faço para ler outro cliente exemplo um 1.0 ou 2.0 alguém pra dá um help
PS : só mudar o cliente manter o muserver e o main


Offline iramondias #128 Posteado: July 12, 2022, 12:22:32 PM

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 56
  • Gracias recibida: 69
  • br
Varios bugs quanto ao cavalo de dl após equipado, se passar o mouse da crash, ao corrigir, não desequipa e se permanecer muito tempo com o mouse, ainda da crash.


Offline Qubit #129 Posteado: July 20, 2022, 03:07:09 PM

  • 0 puntos por ventas
  • *
  • Rank: Sup. destacado
  • Posts: 107
  • Gracias recibida: 4302
  • br
Estava tentando otimizar o cliente e conseguir fazer algumas modificações, irei postar em breve os arquivos "faltam revisão"

-Compatibilidade com windows 7~10 via código.
-Compatibilidade com GPU AMD/NVIDIA.
-Compatibilidade com processadores AMD/INTEL mais recentes.
-Atualização do OpenGL.

Gracias:


Offline Marcela #130 Posteado: July 20, 2022, 03:19:08 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 294
  • Gracias recibida: 14453
  • ar
Estava tentando otimizar o cliente e conseguir fazer algumas modificações, irei postar em breve os arquivos "faltam revisão"

-Compatibilidade com windows 7~10 via código.
-Compatibilidade com GPU AMD/NVIDIA.
-Compatibilidade com processadores AMD/INTEL mais recentes.
-Atualização do OpenGL.

 aplausos

Discord:
MEMPHIS#0430

Offline Rindy #131 Posteado: August 01, 2022, 10:56:27 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 78
  • Gracias recibida: 1738
  • gb

Offline leehenry1208 #132 Posteado: August 22, 2022, 06:25:59 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 3
  • Gracias recibida: 244
  • vn
Updated.

removed unnecessary files and added backup of compatible database.


can you share your boost_1_75_0 folder ?


Offline jorge2016 #133 Posteado: August 22, 2022, 01:14:54 PM

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2164
  • uy

Gracias:


Offline son1xx2 #134 Posteado: September 15, 2022, 12:41:31 PM

  • 0 puntos por ventas
  • *
  • Rank: Liga mayor
  • Posts: 198
  • Gracias recibida: 2452
  • vn
Do better, don't try to do the same ;)

Offline h3yShOk #135 Posteado: September 16, 2022, 06:32:55 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 143
  • Gracias recibida: 1860
  • pa
Has someone already separated the chat from the system messages?


Offline muccone #136 Posteado: September 16, 2022, 12:41:39 PM | Modificado: September 16, 2022, 12:52:53 PM by muccone

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 50
  • Gracias recibida: 171
  • tw
Has someone already separated the chat from the system messages?





Code: [Select]
if (MsgType != TYPE_SYSTEM_MESSAGE)
{
CMessageText* pAllMsgText = new CMessageText;
if (!pAllMsgText->Create(strID, strText1, MsgType))
delete pAllMsgText;
else
{
m_vecAllMsgs.push_back(pAllMsgText);
}
}


if (MsgType == TYPE_SYSTEM_MESSAGE)
{
nScrollLinesNew++;
}else
if( (GetCurrentMsgType() == TYPE_ALL_MESSAGE || GetCurrentMsgType() == MsgType) && MsgType != TYPE_SYSTEM_MESSAGE)
{
nScrollLines++;
}

if (MsgType == TYPE_SYSTEM_MESSAGE)
{
pvecMsgs = GetMsgs(MsgType);
if (pvecMsgs == NULL)
{
assert(!"Error chat 4");
return;
}
if (nScrollLinesNew > 0 && ((pvecMsgs->size() - (m_iCurrentRenderEndLineMsg + 1) - nScrollLinesNew) < 3))
m_iCurrentRenderEndLineMsg = pvecMsgs->size() - 1;
else if (!m_bShowFrame)
m_iCurrentRenderEndLineMsg = pvecMsgs->size() - 1;


}

bool SEASON3B::CNewUIChatLogWindow::RenderMessagesNew()
{
float fRenderPosX = m_WndPos.x, fRenderPosY = m_WndPos.y - m_WndSize.cy + SCROLL_TOP_BOTTOM_PART_HEIGHT;

type_vector_msgs* pvecMsgs = GetMsgs(TYPE_SYSTEM_MESSAGE);
if (pvecMsgs == NULL)
{
assert(!"empty chat!");
return false;
}
int iRenderStartLine = 0;
if (GetCurrentRenderEndLineMsg() >= m_nShowingLinesMsg)
{
iRenderStartLine = GetCurrentRenderEndLineMsg() - m_nShowingLinesMsg + 1;
}
else
{
fRenderPosY = fRenderPosY + FONT_LEADING + (SCROLL_MIDDLE_PART_HEIGHT * (m_nShowingLinesMsg - GetCurrentRenderEndLineMsg() - 1));
}
fRenderPosY -= 270;
BYTE byAlpha = 150;
if (m_bShowFrame) byAlpha = 100;
EnableAlphaTest();
for (int i = iRenderStartLine, s = 0; i <= GetCurrentRenderEndLineMsg(); i++, s++)
{
if (i < 0 && i >= (int)pvecMsgs->size()) break;

bool bRenderMessage = true;
g_pRenderText->SetFont(g_hFont);
g_pRenderText->SetBgColor(0, 0, 0, 150);
g_pRenderText->SetTextColor(100, 150, 255, 255);
CMessageText* pMsgText = (*pvecMsgs)[i];
if (bRenderMessage && !pMsgText->GetText().empty())
{
POINT ptRenderPos = { (long)fRenderPosX + (long)WND_LEFT_RIGHT_EDGE, (long)fRenderPosY + (long)FONT_LEADING + ((long)SCROLL_MIDDLE_PART_HEIGHT * (long)s) };


if (!pMsgText->GetID().empty())
{
if (m_bPointedMessage == true && m_iPointedMessageIndex == i)
{
g_pRenderText->SetBgColor(30, 30, 30, 180);
g_pRenderText->SetTextColor(255, 128, 255, 255);
}
std::string strIDUTF8 = "";
g_pMultiLanguage->ConvertANSIToUTF8OrViceVersa(strIDUTF8, (pMsgText->GetID()).c_str());
type_string strLine = strIDUTF8 + " : " + pMsgText->GetText();
g_pRenderText->RenderText(ptRenderPos.x, ptRenderPos.y, strLine.c_str());
}
else
{
g_pRenderText->RenderText(ptRenderPos.x, ptRenderPos.y, pMsgText->GetText().c_str());
}
}
}
DisableAlphaBlend();

return true;
}




Telegram Account :@mucone    develop Mu

Gracias:


Offline h3yShOk #137 Posteado: September 16, 2022, 05:36:31 PM | Modificado: September 16, 2022, 05:55:09 PM by h3yShOk

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 143
  • Gracias recibida: 1860
  • pa

Offline assrub #138 Posteado: September 21, 2022, 08:49:24 PM | Modificado: September 23, 2022, 05:28:50 AM by assrub

  • +3 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 85
  • Gracias recibida: 961
  • ar
Hola chicos, alguno me da una mano con este error por favor?
tengo entendido que tengo que vincular <boost_path>\stage\lib  pero descargue el boost lo instale y agregue los path y sigue igual.

desde ya, gracias!


Gracias:


Offline h3yShOk #139 Posteado: September 21, 2022, 10:23:49 PM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 143
  • Gracias recibida: 1860
  • pa
anyone have season 6 masterskill tree for client? I will buy.


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
89 Replies
33069 Views
Last post November 20, 2021, 04:00:17 PM
by djagripnos
211 Replies
50146 Views
Last post August 27, 2023, 01:38:23 AM
by OBBY
9 Replies
3526 Views
Last post February 05, 2020, 07:40:01 AM
by takumi12
3 Replies
4504 Views
Last post February 28, 2020, 11:17:49 PM
by ConejoMalo
26 Replies
14467 Views
Last post December 21, 2024, 04:54:26 AM
by josef300