jamesandrew Posted September 21, 2023 Group: Members Topic Count: 23 Topics Per Day: 0.03 Content Count: 60 Reputation: 3 Joined: 06/21/23 Last Seen: March 4 Share Posted September 21, 2023 (edited) How do you make card combo script for this? Poring Card [+Mastering Card] Critical Rate +3 [Refine Rate +8 or higher] Addtional LUK +2 Addtional Critical Rate +3 item_combos.yml - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; if (getrefine()>7) { bonus bLuk,2; bonus bCritical,3; } I'm getting this error Edited October 7, 2023 by jamesandrew Quote Link to comment Share on other sites More sharing options...
1 Chaos92 Posted September 21, 2023 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1827 Reputation: 288 Joined: 08/03/12 Last Seen: 2 hours ago Share Posted September 21, 2023 1 hour ago, jamesandrew said: How do you make card combo script for this? Poring Card [+Mastering Card] Critical Rate +3 [Refine Rate +8 or higher] Addtional LUK +2 Addtional Critical Rate +3 item_combos.yml - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; if (getrefine()>7) { bonus bLuk,2; bonus bCritical,3; } I'm getting this error you didnt specify which part for the refine. Example : if (getequiprefinerycnt(EQI_HAND_R) >= 7) { autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",1000,3000,BF_SHORT|BF_NORMAL; } 1 Quote Link to comment Share on other sites More sharing options...
0 jamesandrew Posted September 22, 2023 Group: Members Topic Count: 23 Topics Per Day: 0.03 Content Count: 60 Reputation: 3 Joined: 06/21/23 Last Seen: March 4 Author Share Posted September 22, 2023 (edited) 4 hours ago, Chaos92 said: you didnt specify which part for the refine. Example : if (getequiprefinerycnt(EQI_HAND_R) >= 7) { autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",1000,3000,BF_SHORT|BF_NORMAL; } It didn't work. I'm still getting same error. - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; if (getequiprefinerycnt(EQI_GARMENT) >= 8) { bonus bLuk,2; bonus bCritical,3; } - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; .@r = getequiprefinerycnt(EQI_GARMENT); if (.@r>=8) { bonus bLuk,2; bonus bCritical,3; } both didn't work Edited September 22, 2023 by jamesandrew Quote Link to comment Share on other sites More sharing options...
0 Chaos92 Posted September 22, 2023 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1827 Reputation: 288 Joined: 08/03/12 Last Seen: 2 hours ago Share Posted September 22, 2023 1 hour ago, jamesandrew said: It didn't work. I'm still getting same error. - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; if (getequiprefinerycnt(EQI_GARMENT) >= 8) { bonus bLuk,2; bonus bCritical,3; } - Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; .@r = getequiprefinerycnt(EQI_GARMENT); if (.@r>=8) { bonus bLuk,2; bonus bCritical,3; } both didn't work what error ? And are u sure that getrefine error is from this line ? Quote Link to comment Share on other sites More sharing options...
0 jamesandrew Posted September 22, 2023 Group: Members Topic Count: 23 Topics Per Day: 0.03 Content Count: 60 Reputation: 3 Joined: 06/21/23 Last Seen: March 4 Author Share Posted September 22, 2023 solved. It was an error from import/item_combos.yml Quote Link to comment Share on other sites More sharing options...
Question
jamesandrew
How do you make card combo script for this?
Poring Card
[+Mastering Card]
Critical Rate +3
[Refine Rate +8 or higher]
Addtional LUK +2
Addtional Critical Rate +3
item_combos.yml
- Combos: - Combo: - Mastering_Card - Poring_Card Script: | bonus bCritical,3; if (getrefine()>7) { bonus bLuk,2; bonus bCritical,3; }
I'm getting this error
Edited by jamesandrewLink to comment
Share on other sites
4 answers 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.