ANYONE KNOW WHAT HAPPEN WHY ITEM IS UNABLE?

Junior Spellweaver
Joined
Jan 29, 2023
Messages
156
Reaction score
1
1738594524431 - ANYONE KNOW WHAT HAPPEN WHY ITEM IS UNABLE? - RaGEZONE Forums

EP9 BUBU SOURCE FILE WHY ITEM LIKE THIS ? PLEASE HELP I CHECK ITEMEDITOR ITS WEARABLE ALREADY
 
try checking itemeditor

page 1 uncheck Consumable
page 1 Type = Wearable Item
page 2 maxPile =1
page 2 Consumable Type = None
 
Last edited:
Upvote 0
this madam how to fix? when click system?
i don't use this source so i don't know it well
try this i think it might be related to what you are saying
if it gives an error then return as is
in BasicChatRightBodyEx
find GetPartyRecruit
and comment out all 3 lines related to GetPartyRecruit
/*if ( sTextWord.isYes || sTextWord.isNo )
{
sLINKREC = m_pTextBox_ALL->GetPartyRecruit ( nIndex );
if ( sTextWord.isYes )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_OK;
NETSEND ( &NetMsg );
}
else if ( sTextWord.isNo )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_REFUSE;
NETSEND ( &NetMsg );
}
break;
}*/
 
Last edited:
Upvote 0
i don't use this source so i don't know it well
try this i think it might be related to what you are saying
if it gives an error then return as is
in BasicChatRightBodyEx
find GetPartyRecruit
and comment out all 3 lines related to GetPartyRecruit
/*if ( sTextWord.isYes || sTextWord.isNo )
{
sLINKREC = m_pTextBox_ALL->GetPartyRecruit ( nIndex );
if ( sTextWord.isYes )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_OK;
NETSEND ( &NetMsg );
}
else if ( sTextWord.isNo )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_REFUSE;
NETSEND ( &NetMsg );
}
break;
}*/
i will try wait madam
 
Upvote 0
i don't use this source so i don't know it well
try this i think it might be related to what you are saying
if it gives an error then return as is
in BasicChatRightBodyEx
find GetPartyRecruit
and comment out all 3 lines related to GetPartyRecruit
/*if ( sTextWord.isYes || sTextWord.isNo )
{
sLINKREC = m_pTextBox_ALL->GetPartyRecruit ( nIndex );
if ( sTextWord.isYes )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_OK;
NETSEND ( &NetMsg );
}
else if ( sTextWord.isNo )
{
GLMSG::SNET_PARTY_LURE_TAR_ANS NetMsg;
NetMsg.dwTarID = sLINKREC.m_dwCHAR;
NetMsg.dwMasterID = sLINKREC.m_dwMASTER;
NetMsg.dwPartyID = sLINKREC.m_dwPARTYID;
NetMsg.emAnswer = EMPARTY_LURE_REFUSE;
NETSEND ( &NetMsg );
}
break;
}*/
still have error but thank you for your answer madam :)
 
Upvote 0
Back