Jaycee KyD Posted May 26, 2023 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 33 Reputation: 3 Joined: 06/03/12 Last Seen: June 2, 2023 Share Posted May 26, 2023 hi there anyone can help me in this source code. sample i want to make extra damage if the player equip the item( id code ) in source code not in item_db. EXAMPLE: DARKNESSATTACK: if (sd->equip_index[EQP_HEAD_TOP] == 19001 ) { skillratio += 500 + 40 * skill_lv; break; } skillratio += 300 + 40 * skill_lv; break; this code is not working if (sd->equip_index[EQP_HEAD_TOP] == 19001 ) is there anyone can help me? thank you in advance Quote Link to comment Share on other sites More sharing options...
0 Magnetix Posted June 15, 2023 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 446 Reputation: 30 Joined: 12/08/11 Last Seen: October 13, 2024 Share Posted June 15, 2023 if (sd->equip_index[EQI_HEAD_TOP] >= 0 && sd->inventory_data[sd->equip_index[EQI_HEAD_TOP]]->nameid == 19001) skillratio += 500 + 40 * skill_lv; else skillratio += 300 + 40 * skill_lv; break; Make sure to recompile. Quote Link to comment Share on other sites More sharing options...
Question
Jaycee KyD
hi there anyone can help me in this source code. sample i want to make extra damage if the player equip the item( id code ) in source code not in item_db.
EXAMPLE:
DARKNESSATTACK:
if (sd->equip_index[EQP_HEAD_TOP] == 19001 ) { skillratio += 500 + 40 * skill_lv;
break; }
skillratio += 300 + 40 * skill_lv;
break;
this code is not working if (sd->equip_index[EQP_HEAD_TOP] == 19001 ) is there anyone can help me? thank you in advance
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.