Posts tagged tutorial
Using m25 AI in mods
Jul 13th
Since this has been asked a few times, I’m going to put it on the blog so that it’s easily findable in the future.
How do you use m25′s AI in a mod or campaign setting?
Simple, dear asker. Just follow these steps:
- Import the FFX module using the following command:
from ffx import * - Under your OnPostInit() section, add the following lines of code:
setMission(numerical value),InitScripts(), andFFX_InitMission()
- Still under OnPostInit(), add the following lines of code:
- And when you’re ready to activate the custom AI, call
SetupAI()with the appropriate character name.
heroes = getAllHeroes() for h in heroes: SetupAI(h) AIDisableCustom(h)
The completed file will look similarly to this:
# Sample
from cshelper import *
from ffx import *
def OnPostInit():
print "start"
setMission(1)
InitScripts()
FFX_InitMission()
heroes = getAllHeroes()
for h in heroes:
SetupAI(h)
AIDisableCustom(h)
def super(event):
m25ai.SetupAI('superguy')
That’s the gist of it, but if you want to know more about this process and what other commands you’re able to use, check out this thread: Using m25 AI. Hope this helps.
Skinning Tutorial: Logo
Jun 24th
Prev mentioned I should demonstrate my process for creating logos for my skins, so I did… in a very brief manner. It starts in Adobe Illustrator and ends in Adobe Photoshop.
Have a question that you want to see covered? Go here and submit! Video Skinning Tutorials
Skinning Tutorial: Boots
Jun 15th
John Jr. said:
Murs, how you did the boots of your Red Son Superman? Most of skins (including all of mine) has the boots looking form fitting, like spandex. Your Red Son Supes has a great leather feel and no muscles showing in his boots. How you did that?
Have a question that you want to see covered? Go here and submit! Video Skinning Tutorials
Skinning Tutorial: Hair
Jun 9th
LP said:
However, the thing that I believe all skinners could aid from is different techniques in doing HAIR, for both male and female meshes.
This same method can be applied to female hair.
Have a question that you want to see covered? Go here and submit! Video Skinning Tutorials
Skinning Tutorial: Color
May 26th
Podmark said:
I have a question Murs, how do you colour your base? Like going from your original base to the blue tone you have for the Spidey 2099 skin you did.
Have a question that you want to see covered? Go here and submit! Video Skinning Tutorials
Skinning Tutorial: Highlights
May 23rd
Freedom Reborn member John Jr. asks:
“Murs, how did you make the (perfect) highlights on your Spidey 2099 skin?”
I don’t know about perfect, but this is how I go about doing them. If anyone would like me to go into more detail, just let me know.
Just a heads up: I’ve been fighting serious allergies so I’m sorry for any coughing, sneezing, sniffling, and throat clearing.
Have a question that you want to see covered? Go here and submit! Video Skinning Tutorials
How to Merge Dats
Feb 21st
Merging dats is something that can be a little confusing the first few times you do it, so FRP2 decided to help you out with a little tutorial. Make sure you back up all your files before continuing!
Ghosting/Repeating Mesh tutorial
Feb 15th
So, you’re having a problem with your FF1 meshes ghosting or “repeating” each other (animation wise) in FFv3R and have no idea how to fix it? Well, let me help you out with that. Follow along, students.
First of all, you’ll need the following tools. We’re going to be dealing with Python, so prepare yourselves.
How to Install Custom Sounds in FFVTTR
Jun 14th
The question has popped up enough that I took the time to write a small guide on it. Hopefully, this helps anyone that found the installation of FX sounds difficult.