Note no extra damage is added as a result of these effects. If you want extra damage code your own in iCalculateAttackEffect or wait for some other poor prick to do it for you (you people seem to be good at that)
Example used in this code
Code: Select all
Item = 293 Striker 1 9 1 2 7 0 2 8 0 800 2 1 7 250 2800 8 6 0 0 -3 2 8 1 0
Type: 2 hand
ID: 293
Sprite: BroadSword
Magic effects:
Critical: Casts Mass-Magic-Missile Aura on the attacker and shoots Energy-Bolt at the target.
Normal/dash: Shoots Magic-Missile
Game.cpp
Function: iClientMotion_Attack_Handler
Find
Code: Select all
if (sOwner != NULL) {
if ((wType != 0) && ((dwTime - m_pClientList[iClientH]->m_dwRecentAttackTime) > 100)) {
if ((m_pClientList[iClientH]->m_pIsProcessingAllowed == FALSE) && (m_pClientList[iClientH]->m_bIsInsideWarehouse == FALSE)
&& (m_pClientList[iClientH]->m_bIsInsideWizardTower == FALSE) && (m_pClientList[iClientH]->m_bIsInsideOwnTown == FALSE)) {
Code: Select all
/***************************************
********** Magic Weapons **********
***************************************/
sItemIndex = m_pClientList[iClientH]->m_sItemEquipmentStatus[ DEF_EQUIPPOS_TWOHAND ];
if (sItemIndex != -1 && m_pClientList[iClientH]->m_pItemList[sItemIndex] != NULL)
{
if ((m_pClientList[iClientH]->m_sAppr2 & 0xF000) != 0)
{
if(m_pClientList[iClientH]->m_pItemList[sItemIndex]->m_sIDnum == 293) // Striker
{
short sType;
if(wType >= 20) // (ALT) Critical Attack
{
sType = 84; // Mass-Magic-Missile Aura
SendEventToNearClient_TypeB(MSGID_EVENT_COMMON, DEF_COMMONTYPE_MAGIC, m_pClientList[iClientH]->m_cMapIndex, sX, sY, sX, sY, (sType+100), m_pClientList[iClientH]->m_sType);
sType = 10; // Energy-Bolt
SendEventToNearClient_TypeB(MSGID_EVENT_COMMON, DEF_COMMONTYPE_MAGIC, m_pClientList[iClientH]->m_cMapIndex, sX, sY, dX, dY, (sType+100), m_pClientList[iClientH]->m_sType);
}
else // Dash/Normal Attack
{
sType = 0; // Magic-Missile
SendEventToNearClient_TypeB(MSGID_EVENT_COMMON, DEF_COMMONTYPE_MAGIC, m_pClientList[iClientH]->m_cMapIndex, sX, sY, dX, dY, (sType+100), m_pClientList[iClientH]->m_sType);
}
}
}
}
/***************************************
***************************************/

SS shooting MM