Little Fighter Empire - Forums
Multiple dashes in one special move - Printable Version

+- Little Fighter Empire - Forums (https://lf-empire.de/forum)
+-- Forum: Little Fighter 2 Zone (https://lf-empire.de/forum/forumdisplay.php?fid=7)
+--- Forum: Data Changing (https://lf-empire.de/forum/forumdisplay.php?fid=11)
+--- Thread: Multiple dashes in one special move (/showthread.php?tid=5912)



Multiple dashes in one special move - Memento - 12-28-2010

Hi guys. I was wondering, is there a known method to make a character do multiple dashes during one special attack? I want to make a combo attack for my character where he kicks the opponent up, dashes after him and hit, lands, and go on doing the (not standard) dash attacks.


RE: Multiple dashes in one special move - ~Dome~ - 12-28-2010

just use state: 100 in the frame when he is in the air, if he touches the ground he will go to frame 94 and then you link to frame 215 [crouch]

    DC-Code:
<frame> 350 Air
   pic: 63 state: 100  wait: 90  next: 215  dvx: 0  dvy: 0  dvz: 0  centerx: 39  centery: 79  hit_a: 0  hit_d: 0  hit_j: 0
<frame_end>
 
<frame> 94 linking_frame
   pic: 60 state: 15  wait: 1  next: 215  dvx: 0 dvy: 0  dvz: 0  centerx: 39  centery: 79  hit_a: 0  hit_d: 0  hit_j: 0
<frame_end>



RE: Multiple dashes in one special move - Azriel - 12-29-2010

or fake the dash with dash + crouch sprites, centery adjustments and dvy: 550, and still use next: to control ur char (needs some testing coz of gravity). (state: 100 needs a "cancel" mechanism (like -mp or hit_j/d))



Azriel~