YesNoOk

Show content

This section allows you to browse the content for this member. Note that you can only see content for which you have sufficient viewing permissions.

**
El1te22 is Offline
Contact El1te22:

El1te22

User

Messages by El1te22

    

Re: I don’t want drama

 November 03, 2023, 03:39:57 am View in topic context
 Posted by El1te22  in I don’t want drama (Started by El1te22 October 30, 2023, 04:01:19 am
 Board: All That's Left

Well, I've encountered Trolls on YouTube, DeviantArt, Roblox, etc. I've honestly been upset occasionally because of them.
    

I don’t want drama

 October 30, 2023, 04:01:19 am View in topic context
 Posted by El1te22  in I don’t want drama (Started by El1te22 October 30, 2023, 04:01:19 am
 Board: All That's Left

The good thing is that I never have been involved in any drama on this forum site at all. I do not want to be involved in ANY drama at all. I don’t want ANY trolls or bullies trying to get me into drama. If I EVER see any trolls or bullies trying to cause drama and try to get me involved, I WILL tell an admin. That’s all I have to say. I don’t ever want to interact with trolls or bullies on MugenGuild.
    

Pakdam Pakdai Characters Join the Battle Part 2

 May 16, 2022, 10:28:55 pm View in topic context
 Posted by El1te22  in Pakdam Pakdai Characters Join the Battle Part 2 (Started by El1te22 May 16, 2022, 10:28:55 pm
 Board: Idea Engineering

Nevermind, I will take care of all 5 to 6 of the characters. So I don't need or want any more help from anybody else. But I did Finish Motu already. If this topic is in the wrong section, I apologize.
    

Re: Still trying to figure out which topics goes to a specific section

 February 04, 2021, 03:17:16 am View in topic context
 Posted by El1te22  in Still trying to figure out which topics goes to a specific section (Started by El1te22 January 16, 2021, 03:25:13 am
 Board: All That's Left

Like in the past, I posted topics on the wrong section and I would sometimes bump the topic a couple of times. I also sometimes have notifications saying like, "Your topic was moved to...". I'm still like poor at keeping things on topic. And I admit that I have done some irrelevant activity here.
    

Still trying to figure out which topics goes to a specific section

 January 16, 2021, 03:25:13 am View in topic context
 Posted by El1te22  in Still trying to figure out which topics goes to a specific section (Started by El1te22 January 16, 2021, 03:25:13 am
 Board: All That's Left

Dispite that I created my account 3 years ago, I am still struggling on where I can post topics.
Like I keep messing my content up all the time and its out of hand. I'm not really good at where
I'm supposed to post a topic. If I could get some more help from people, that's appreciated.
    

I’m back and I’ll support everybody.

 May 31, 2020, 08:39:20 pm View in topic context
 Posted by El1te22  in I’m back and I’ll support everybody. (Started by El1te22 May 31, 2020, 08:39:20 pm
 Board: Introductions and Guides

It’s been about months since I was active here MFFA, and other Mugen Websites. I am now back and I am gonna be doing more stages, characters and so much more into the future. I am never quitting Mugen and will always support everybody here. I also have a different avatar instead of Sierra Brogmus. Like RMaster007 wasn’t happy about.
    

Re: Youtube to Gif

 September 07, 2019, 04:55:28 pm View in topic context
 Posted by El1te22  in Youtube to Gif (Started by oraora? September 07, 2019, 04:25:05 pm
 Board: Off-Topic Help

You can try Make A Gif Webpage. It's free and I believe there are no errors.
    

Re: Wall Bounce Issue?!

 August 04, 2019, 02:49:58 am View in topic context
 Posted by El1te22  in Wall Bounce Issue?! (Started by Fighting Toys Freak August 02, 2019, 05:19:32 pm
 Board: M.U.G.E.N Configuration Help

Oh, you want to learn the wall bounce coding?

It's easy and simple. It's like this:
Code:
[State 1027, Turn]
type = Turn
trigger1 = (Time = 0) && (FrontEdgeBodyDist <= 30)

[State 1027, Pos]
type = PosAdd
trigger1 = Time = 0
x = 15 - BackEdgeBodyDist

[State 1027, Stop moving]
type = PosFreeze
trigger1 = 1
x = 1
y = 1

[State 1027, No scroll]
type = ScreenBound
trigger1 = 1
value = 1
movecamera = 0,1

[State 1027, Spark]
type = Explod
trigger1 = Time = 0
anim = F72
pos = 0, floor (screenpos y) - 50
postype = back
sprpriority = 3

[State 1027, Anim]
type = ChangeAnim2
trigger1 = Time = 0
value = 1027

[State 1027, Sound]
type = PlaySnd
trigger1 = Time = 0
value = F7,0

[State 1027, State]
type = ChangeState
trigger1 = AnimTime = 0
value = 1028

Code:
[Statedef 1028]
type    = A
movetype= H
physics = N

[State 1028, 1]
type = NotHitBy
trigger1 = 1
value = , NA, NP

[State 1028, Vel Y]
type = VelSet
trigger1 = Time = 0
y = -6

[State 1028, Vel X]
type = VelSet
trigger1 = Time = 0
x = 1.6

[State 1028, Turn]
type = Turn
trigger1 = (Time = 0) && (BackEdgeDist < 30)

[State 1028, Gravity]
type = VelAdd
trigger1 = 1
y = .35

[State 1028, Anim 5050] ;Self falling animation
type = ChangeAnim
trigger1 = Time = 0
trigger1 = !SelfAnimExist(5052)
value = 5050

[State 1028, Anim 5052] ;Self falling animation (diagup type)
type = ChangeAnim
trigger1 = Time = 0
trigger1 = SelfAnimExist(5052)
value = 5052

[State 1028, Anim 5060] ;Coming down - normal
type = ChangeAnim
trigger1 = Vel Y > -2
trigger1 = Anim = 5050
trigger1 = SelfAnimExist(5060)
persistent = 0
value = 5060

[State 1028, Anim 5062] ;Coming down - diagup type
type = ChangeAnim
trigger1 = Vel Y > -2
trigger1 = Anim = 5052
trigger1 = SelfAnimExist(5062)
persistent = 0
value = 5062

[State 1028, Hit ground]
type = SelfState
trigger1 = (Vel y > 0) && (Pos y >= 0)
value = 5100
    

Re: ClayFighter 63 1/3 comes to MUGEN!! (Let's get Tiny!!)

 June 29, 2019, 06:19:41 pm View in topic context
 Posted by El1te22  in ClayFighter comes to MUGEN!! (T-Hoppy, Klaymen and HoboCop for 2024!!) (Started by Basara Lapis April 16, 2010, 04:25:09 pm
 Board: Projects

Why are you replying to a three month old post just to post that

I probably wasn't online that day. I know I have been warned about irrelevant discussions in the past. Sorry, sir.
    

Re: ClayFighter 63 1/3 comes to MUGEN!! (Let's get Tiny!!)

 June 29, 2019, 06:11:29 pm View in topic context
 Posted by El1te22  in ClayFighter comes to MUGEN!! (T-Hoppy, Klaymen and HoboCop for 2024!!) (Started by Basara Lapis April 16, 2010, 04:25:09 pm
 Board: Projects

    

Re: ClayFighter 63 1/3 comes to MUGEN!! (Ice now has video preview!)

 March 29, 2019, 12:17:07 am View in topic context
 Posted by El1te22  in ClayFighter comes to MUGEN!! (T-Hoppy, Klaymen and HoboCop for 2024!!) (Started by Basara Lapis April 16, 2010, 04:25:09 pm
 Board: Projects

    

Re: I've been on here for 1 year.

 November 22, 2018, 06:13:49 pm View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

Thanks Odb718. Sorry about the account clone. I was talking to myself.
    

Re: Re: Pakdam Pakdai Characters Join the Battle!

 November 22, 2018, 04:48:38 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

I'm making Motu right now.
    

Re: Pakdam Pakdai Characters Join the Battle!

 November 22, 2018, 04:47:42 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

I would help you, but I'm afraid I would make crappy characters. Don't worry, others will help you make sheets for your Rat-A-Tat Characters.
    

Re: I've been on here for 1 year.

 November 22, 2018, 04:40:08 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

    

Re: I've been on here for 1 year.

 November 22, 2018, 04:38:10 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

    

Re: I've been on here for 1 year.

 November 22, 2018, 04:37:25 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

    

Re: I've been on here for 1 year.

 November 22, 2018, 04:20:21 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

I don't care if you say that my avatar stinks. If nobody cares about what I do, that's on them. At least G-knux 19 likes me.
    

I've been on here for 1 year.

 November 22, 2018, 02:18:53 am View in topic context
 Posted by El1te22  in Confused on why I'm in the shit thread after I kept threatening to shit (Started by Do not even ask October 28, 2012, 10:37:23 am
 Board: All That's Left

Let's celebrate 1 year anniversary of MFG I've been on! :D
    

Re: Yoko Littner (Vs.Style.)

 August 17, 2018, 11:47:42 pm View in topic context
 Posted by El1te22  in Yoko Littner (Vs.Style.) (Started by G-knux19 August 04, 2018, 12:04:08 am
 Board: Your Releases, 1.0+

That would take about a month to make an english voice pack, so I'll start to make one later.