Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help !
#1
Directly to the point:

I want super_punch (template.dat - frame 72) to have a burning effect. Ok, so effects: 2 / 20 / 21 / 22 are possibilities. But when I punch the opponent and I stay near to it I get burned too !

I've checked [http://www.lf-empire.de/content/view/164...9/lang,en/] and [http://www.lf-empire.de/content/view/162/147/lang,en/]... and tried all effects alone and all effects combined with state: 18. But couldn't get it yet... I think I've already read some thread similar to it but couldn't find it using the Search engine... Can you guys help me ?

Quote:<frame> 70 super_punch
pic: 37 state: 3 wait: 3 next: 71 dvx: 0 dvy: 0 centerx: 39 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
bdy:
kind: 0 x: 22 y: 14 w: 30 h: 65
bdy_end:
<frame_end>

<frame> 71 super_punch
pic: 38 state: 3 wait: 2 next: 72 dvx: 4 dvy: 0 centerx: 39 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
bdy:
kind: 0 x: 40 y: 21 w: 30 h: 43
bdy_end:
bdy:
kind: 0 x: 29 y: 57 w: 32 h: 23
bdy_end:
<frame_end>

<frame> 72 super_punch
pic: 39 state: 3 wait: 4 next: 999 dvx: 0 dvy: 0 centerx: 46 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
sound: data\007.wav
itr:
kind: 0 x: 40 y: -2 w: 41 h: 51 dvx: 5 dvy: -12 fall: 70 arest: 15 bdefend: 60 injury: 50
effect: ??? (state: ???)
itr_end:
bdy:
kind: 0 x: 31 y: 2 w: 27 h: 78
bdy_end:
<frame_end>

Maybe if the only way is making my character fireproof I will try to put the burn effect into another attack move so that I can't get burned from that move and still can be hit from fire attacks.

Another question:

How can I make my character totally immune to fire/ice ?
Reply
Thanks given by:
#2
<frame> 70 super_punch
pic: 37 state: 3 wait: 3 next: 71 dvx: 0 dvy: 0 centerx: 39 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
bdy:
kind: 0 x: 22 y: 14 w: 30 h: 65
bdy_end:
<frame_end>

<frame> 71 super_punch
pic: 38 state: 3 wait: 2 next: 72 dvx: 4 dvy: 0 centerx: 39 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
bdy:
kind: 0 x: 40 y: 21 w: 30 h: 43
bdy_end:
bdy:
kind: 0 x: 29 y: 57 w: 32 h: 23
bdy_end:
<frame_end>

<frame> 72 super_punch
pic: 39 state: 3 wait: 4 next: 999 dvx: 0 dvy: 0 centerx: 46 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
sound: data\007.wav
itr:
kind: 0 x: 40 y: -2 w: 41 h: 51 dvx: 5 dvy: -12 fall: 70 arest: 15 bdefend: 60 injury: 50
effect: 2 (Effect 2: Burning)
itr_end:
bdy:
kind: 0 x: 31 y: 2 w: 27 h: 78
bdy_end:
<frame_end>
<center>[Image: 38018291.gif]</center>
Reply
Thanks given by:
#3
I think you misunderstood... I know effect: 2 is burn, but I would like to know how I can make my character not to burn when I attack !
Reply
Thanks given by:
#4
change state to state: 19



Azriel~
Reply
Thanks given by:
#5
Tried again all effects (2; 20; 21; 22) with state: 19.. I think the only possibility not to get burn when attacking too near is making the char burnproof... but I have never heard of things like that (making chars smthproof)...
Anyway, don't worry about this, I think won't use this burning punch effect anymore.
Reply
Thanks given by:
#6
state: 19 is in the frame header not in the itr.

Code:
<frame> 72 super_punch
pic: 39 state: 19 wait: 4 next: 999 dvx: 0 dvy: 0 centerx: 46 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
sound: data\007.wav
itr:
kind: 0 x: 40 y: -2 w: 41 h: 51 dvx: 5 dvy: -12 fall: 70 arest: 15 bdefend: 60 injury: 50
effect: 2
itr_end:
bdy:
kind: 0 x: 31 y: 2 w: 27 h: 78
bdy_end:
<frame_end>



Azriel~
Reply
Thanks given by:
#7
Quote:<frame> 72 super_punch
pic: 39 state: 19 wait: 4 next: 73 dvx: 0 dvy: 0 centerx: 46 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
sound: data\007.wav
itr:
kind: 0 x: 40 y: -2 w: 41 h: 51 dvx: 5 dvy: -12 fall: 70 arest: 15 bdefend: 60 injury: 50
effect: 2
itr_end:
bdy:
kind: 0 x: 31 y: 2 w: 27 h: 78
bdy_end:
<frame_end>

<frame> 73 super_punch
pic: 0 state: 3 wait: 6 next: 999 dvx: 0 dvy: 0 centerx: 39 centery: 79 hit_a: 0 hit_d: 0 hit_j: 0
bdy:
kind: 0 x: -40 y: -500 w: -500 h: -500
bdy_end:

<frame_end>
make a new frame with this body
think it should work
i had no time to try it
Reply
Thanks given by:
#8
Lf2-hacker Wrote:
Quote:bdy:
kind: 0 x: -40 y: -500 w: -500 h: -500
bdy_end:
make a new frame with this body

why that bdy? why not just totally remove the bdy?


about the immunity:
The easiest method is to change the first ice and first burning frame that it looks similar to the standing frames, then you add a next: 120 (such that your char will defend automatically). You can remove the other ice&fire-frames
Silverthorn / Blue Phoenix
~ Breaking LFE since 2008 ~

"Freeze, you're under vrest!" - Mark, probably.

» Gallery | » Sprites | » DeviantArt
Reply
Thanks given by:
#9
casue without the body it doesnt work
i dont no why
Reply
Thanks given by:
#10
What about a one-pixel body far away from the attack?
FOLLOW THE RULES!

LFE Forum Rules (Click to View)
Grand Fonic Hymn - Orchestral Arrangement. Arranged by me. I promise it's not horribad.
Reply
Thanks given by:




Users browsing this thread: 2 Guest(s)