Little Fighter Empire - Forums
begginer problemes :< - 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: begginer problemes :< (/showthread.php?tid=8682)



begginer problemes :< - Ariel - 05-04-2013

im working on Earth DC those days and im kinda stuck in problem with the basic moves
i built his basic sprites over Bat so i wont need to write the whole thing and just change few of the Pic: number for a few frames
i basically did it good i guess but while i test him ingame few frames are transparent in the run attack and dash attack
i tried to go over them again but the Pic numbers are correct so i dunno what to do :\

if u wanna test it than here is the data text:
id: 12 type: 0 file: data\Earth.dat

and here is link for data file and BMPs
http://www.mediafire.com/?5bu1bam527nqb18

put the BMP on sprite/Earth


RE: begginer problemes :< - YinYin - 05-04-2013

    DC-Code:
<frame> 85 run_attack
   pic: 127  state: 3  wait: 3  next: 71  dvx: 8  dvy: 0  dvz: 0  centerx: 43  centery: 79  hit_a: 0  hit_d: 0  hit_j: 0
  sound: data\007.wav 
   bdy:
      kind: 0  x: 25  y: 16  w: 30  h: 61
   bdy_end:
<frame_end>

pic: 127 on the spritesheet is empty. If you want the run attack to be the exact same as the super punch just replace all of that with a copy of frame 70.

    DC-Code:
<frame> 90 dash_attack
   pic: 93  state: 3  wait: 2  next: 91  dvx: 0  dvy: 0  dvz: 0  centerx: 39  centery: 82  hit_a: 0  hit_d: 0  hit_j: 0
  sound: data\007.wav 
   bdy:
      kind: 0  x: 21  y: 9  w: 44  h: 64
   bdy_end:
<frame_end>

Again pic: 93 is simply empty. Actually except for pic: 90 the whole line of 90s is empty.


RE: begginer problemes :< - Ariel - 05-04-2013

thanks yinyin fixed that ^^
ill leave this thread open in case ill have more questions in the future :)