
Just 1 question...the PointCommandHandler addon will be ok to add right just b4 the last } of the function...right b4 it ends right?
you're a noob...€M4NU€L wrote: I don't understand a shit about where to add the codes![]()
lol.... than you so bad to ppl some times hehehe .."Noobs like you must leave hb!" thets why i leaved HB for atm :unsure: :rolleyes:diuuude wrote:you're a noob...€M4NU€L wrote: I don't understand a shit about where to add the codes![]()
you wouldn't try to code. Noobs like you must leave hb!
Why you insult me ? No reason to ... i just don't know where to add codesdiuuude wrote:you're a noob...€M4NU€L wrote: I don't understand a shit about where to add the codes![]()
you wouldn't try to code. Noobs like you must leave hb!
Code: Select all
else if (m_iPointCommandType == 250)
{ if ((strlen(m_cMCName) == 0) || (strcmp(m_cMCName, m_cPlayerName) == 0) || (m_cMCName[0] == '_')) {
PlaySound('E', 14, 5);
}else
{
PlaySound('E', 14, 5);
memcpy(m_cFriends[m_iTotalFriends],m_cMCName,10);
m_iTotalFriends++;
m_stDialogBoxInfo[43].sV1=0;
SaveFriendList();
return;
} }
Code: Select all
}else if (m_iPointCommandType == 200)
{ if ((strlen(m_cMCName) == 0) || (strcmp(m_cMCName, m_cPlayerName) == 0) || (m_cMCName[0] == '_')) {
m_stDialogBoxInfo[32].cMode = 0;
PlaySound('E', 14, 5);
AddEventList(POINT_COMMAND_HANDLER1, 10);
}else
{ m_stDialogBoxInfo[32].cMode = 3;
PlaySound('E', 14, 5);
ZeroMemory(m_stDialogBoxInfo[32].cStr, sizeof(m_stDialogBoxInfo[32].cStr));
strcpy(m_stDialogBoxInfo[32].cStr, m_cMCName);
bSendCommand(MSGID_COMMAND_COMMON, DEF_COMMONTYPE_REQUEST_JOINPARTY, NULL, 1, NULL, NULL, m_cMCName);
return;
}
}
}
Code: Select all
}else if (m_iPointCommandType == 250)
{ if ((strlen(m_cMCName) == 0) || (strcmp(m_cMCName, m_cPlayerName) == 0) || (m_cMCName[0] == '_')) {
PlaySound('E', 14, 5);
}else
{
PlaySound('E', 14, 5);
memcpy(m_cFriends[m_iTotalFriends],m_cMCName,10);
m_iTotalFriends++;
m_stDialogBoxInfo[43].sV1=0;
SaveFriendList();
return;
} }