YesNoOk
avatar

other Software when creating a character (Read 1952 times)

Started by GPEZ, October 16, 2014, 03:08:17 pm
Share this topic:
other Software when creating a character
#1  October 16, 2014, 03:08:17 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
Except FF3, is that any other software that can make helpful when create or modify the character...?
Re: other Software when creating a character
#2  October 16, 2014, 03:15:33 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
I personally use After Effects for creating most of my effects, Photoshop for most things dealing with sprites and Audition for modifying sounds. There are free alternatives (Besides maybe AE... that one is kind of exclusive) to most of these programs out there. In terms of creation tools for mugen specifically, FF3 is the best there is, but if you want, you can try your hand at using Fighter Factory Classic instead. It's closer to the original version and is more stable than FFU was. I still say go with FF3. Are you looking for something specific you want to do that FF3 isn't letting you?

-[Все слова это только слова.]-
Re: other Software when creating a character
#3  October 16, 2014, 03:32:47 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
im not sure whether FF3 having this function or not(maybe im not yet discover it), i'm emphasize on writing on the changestate for AI, i want to ensure the position setting is good enough for Ai to trigger the state, on FF3 i just only seem the offset viewer, that help but not much, and that i have to imagine the position to write, so here i ask the question is that any software can be useful for testing the animation after the effect or any other alternative software can help it
Re: other Software when creating a character
#4  October 16, 2014, 09:00:01 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
What I usually do for debugging is make use of the DisplayToClipboard sctrl. I always have two of the parameters passed being the distance between me and my opponent. That way, I can see exactly how far away I need to be for my AI to use the move. Now for the process:

Code:
; Debug
[State -2]
type = DisplayToClipboard
text = "p2distx: %d  p2disty:%d"
params = p2bodydist x, p2bodydist y

Press Ctrl+D to enable debugging. There at the bottom left, you'll see the output of your DisplayToClipboard code. It's in realtime with your character, so as you move the values change.

-[Все слова это только слова.]-
Re: other Software when creating a character
#5  October 17, 2014, 08:27:49 am
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
yaya, i also use ctrl + d, that why i saw some people have it and some no, thank you for ur suggestion

and if don't mind to ask, u guy really only use FF only in making char or modifies?
Last Edit: October 17, 2014, 08:31:49 am by GPEZ
Re: other Software when creating a character
#6  October 17, 2014, 05:43:02 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
No problem. Yeah, there really aren't any other tools out there that are of the same quality. Back in the WinMUGEN and DosMUGEN days there was MMC, but it's also outdated. In addition, from the very beginning, Elecbyte provided tools (command line) for creating sffs and snds. The .air file could be made in a text editor and all the other stuff would have be done manually. So, in the end FF is your best bet.

-[Все слова это только слова.]-
Re: other Software when creating a character
#7  October 18, 2014, 09:27:56 am
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
ic, thx again for ur helping...appreciate the word, and i have a question about the trigger part, i think that post is moved to development help section right, now honestly, i have no idea with how to write that trigger

and i wanna ask, the initially the debug is set out by frame stateno etc...where can i find that, which file?
Last Edit: October 18, 2014, 09:37:39 am by GPEZ
Re: other Software when creating a character
#8  October 20, 2014, 04:07:07 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
The trigger would just be "1" because you want it active all the time.

For your second question, I don't quite know what you mean. Can you explain or take a picture maybe of what you're looking for?

-[Все слова это только слова.]-
Re: other Software when creating a character
#9  October 21, 2014, 05:27:27 am
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
At the beginning, when we click ctrl + d, the debug info will come out and initially there are only few information, so i wanna ask is which file i can find for this debug info.

Sorry to say cannot insert pic =.=' .....dunno why, once i click insert picture, it just show [image] [\image], and what does tat mean?

     Posted: October 21, 2014, 05:30:34 am


ya...just take example from the website, the debug info, which file (example, system or data file)can i find it to modify...?
Re: other Software when creating a character
#10  October 22, 2014, 01:15:58 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
The debug info that is there is gathered from the system. You don't change it. It shows you what state you're in, the animation you're in, the current sprite, which frame, the time in your current state, the movetype and type of your current state and more. DisplayToClipboard will allow you to output custom info about your character underneath the data at the bottom left.

P.S. As you figured out, the proper bbcode is "img"

-[Все слова это только слова.]-
Re: other Software when creating a character
#11  October 22, 2014, 01:41:43 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
What is mean by bbcode?
Re: other Software when creating a character
#12  October 22, 2014, 09:56:44 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
BBCode is the name for "Bulletin Board Code" that you use on various forums to post pictures, style your text and things like that.

-[Все слова это только слова.]-
Re: other Software when creating a character
#13  October 23, 2014, 08:16:50 am
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
so if i want to upload my picture but not from website, is that i choose the insert image that will appear img format and between it what should i put, the file name with the format of png or something?
Re: other Software when creating a character
#14  October 24, 2014, 12:48:06 am
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
No, you still need to upload images to image hosting websites.

-[Все слова это только слова.]-
Re: other Software when creating a character
#15  October 24, 2014, 02:00:44 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
ic, so what is the hosting website u mention, or where can i find it?
Re: other Software when creating a character
#16  October 24, 2014, 03:01:59 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com

-[Все слова это только слова.]-
Re: other Software when creating a character
#17  October 24, 2014, 03:33:46 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
which mean next time i need to upload to this website first after that i can link it to the "insert image" right?
Re: other Software when creating a character
#18  October 27, 2014, 07:34:50 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com

-[Все слова это только слова.]-
Re: other Software when creating a character
#19  October 27, 2014, 07:42:26 pm
  • *****
  • School.
    • Greenland
    • Skype - wattawright
    • mugencoder.com/authors/view/watta
I also recommend download the software called LightShot. It enables to take a quick screenshot and upload it straight away with a single click. It's very useful when you need to show someone something in a hurry.
Re: other Software when creating a character
#20  October 31, 2014, 03:06:02 pm
  • *
  • Hope can make a new collection
    • Malaysia
    • fljyin08020511@gmail.com
    • Skype - fljyin08020511
@Watta
thank you for the recommendation....i will have it now...
&&

@Алексей
thank you for giving me the information..appreciate it >_<
Re: other Software when creating a character
#21  October 31, 2014, 06:10:52 pm
  • ****
  • Hey.
    • Ukraine
    • mugencoder.com
No problem. Best of luck to you. :)

-[Все слова это только слова.]-