iraciz Posted September 9, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted September 9, 2013 Hello I need to find out a way to display critical attack effect, when sharpshoot attack becomes critical just like this picture I used to play servers that showed the critical hit animation after the sharpshooting attack, and it look gorgeous if anyone know how to do it please I will be more than glad thanks Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 Yeah, I just checked and you should search for this: case GS_CHAINACTION: dmg.dmotion = clif_damage(src,bl,tick,dmg.amotion,dmg.dmotion,damage,dmg.div_,dmg.type,dmg.damage2); break; Just paste it right after that 1 Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 in skill.c case SN_SHARPSHOOTING: if(dmg.type == 0x0a) { dmg.dmotion = clif_damage(src,bl,tick,dmg.amotion,dmg.dmotion,damage,dmg.div_,dmg.type,dmg.damage2); break; } Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 11, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 11, 2013 (edited) a lot of errors 1> skill.c 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3646): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3646): error C2224: el operando izquierdo de '.type' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.dmotion' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.amotion' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.dmotion' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'damage' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.div_' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.type' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2065: 'dmg' : identificador no declarado 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2224: el operando izquierdo de '.damage2' debe tener el tipo struct/union 1>c:\users\mario zicari\desktop\prototipo\rathena\src\map\skill.c(3647): error C2198: 'clif_damage' : no hay suficientes argumentos para la llamada Edited September 11, 2013 by iraciz Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 Worked fine for me on the current revision. What revision are you using? Any reason you implemented the code on line 3647 instead of line 2533? Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 11, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 11, 2013 (edited) yes sir Im using SVN r17181 I place the mod in the line 3645 under case SN_SHARPSHOOTING: (here) case MA_SHARPSHOOTING: case NJ_KAMAITACHI: let me try yor line, to see what happens, my bad Edited September 11, 2013 by iraciz Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 (edited) Can you post the code before and after my code in your file? (The other switch cases) That should be the error since there is damage calculation happening at your line. Hence "dmg" is not defined anymore. Edited September 11, 2013 by Schwierig Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 11, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 11, 2013 (edited) Now it dont display errors, but also Dont show the crit animation BEFORE AFTER I think we are using different versions, maybe the line have to be other one in my version Edited September 11, 2013 by iraciz Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 11, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 11, 2013 is that part of the //Display damage line? Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 Yes, it's that switch statement. (Sorry for spamming that much, I should've posted that from the start) Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 11, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 11, 2013 (edited) Thank you! now it works, It show the critical animation But the skill dont show its original SKILL EFFECT and sound, Skill now just look like a normal attack. Sometimes it hit the single target before ending the casting, sometimes it dont display the attack animation of the char (just attack but stay steady) AND it dont display skill message on the char when freecast I think I´ll going to skip this one! Edited September 11, 2013 by iraciz Quote Link to comment Share on other sites More sharing options...
Schwierig Posted September 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 15 Reputation: 3 Joined: 09/11/13 Last Seen: September 22, 2014 Share Posted September 11, 2013 The problem there lies that without further modification skills can't crit. They just have their normal damage display. I worked around that by displaying the skill as a normal attack, thus the normal skill properties not working as expected. My solution was just quick and dirty. I would love to see another solution, maybe a bit less buggy Quote Link to comment Share on other sites More sharing options...
iraciz Posted September 12, 2013 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Author Share Posted September 12, 2013 Awesome, me too Because sharp shoting and ninja shadw slash, has a chance to crit and both skills works with the paper card, or any other it would be greate t display the criticl for those Quote Link to comment Share on other sites More sharing options...
Question
iraciz
Hello
I need to find out a way to display critical attack effect, when sharpshoot attack becomes critical
just like this picture
I used to play servers that showed the critical hit animation after the sharpshooting attack, and it look gorgeous
if anyone know how to do it please I will be more than glad
thanks
Link to comment
Share on other sites
12 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.