Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsJedi Outcast and Jedi Academy Editing Forum → I want to make an SP mod... need program?
I want to make an SP mod... need program?
2004-04-24, 11:31 AM #1
Hey ppl. I want to make an SP mod and I to know which program I need to be able to change variables. Such as, how high my dude can jump under force 1, or 2. And also change moves, actions. I looked under the massassi/programs and I couldnt find anything that looked like what I needed. Need Help ASAP. THX.
2004-04-25, 1:55 AM #2
my name is need help so i think you called for me [http://forums.massassi.net/html/tongue.gif].

All the programs that you want to change are in the assets1.pk3 file. Unzip it with unzip or use pacscape...I dont know very much about modding. But all the fles are in there

------------------
He cuts you with the words sun san...its quistion obi one.

When youre chased. With a correlian cruiser...Watch your back. Its quistion twozer
2004-04-25, 5:27 AM #3
Alright. I see a bunch of files. And I found one that seems to be the most likely to have the force stuff. But it looks like this

...CBA378F8-6A2E-47D4-AAD2-376B3A476176};{F3E82EC0-B093-4513-8E80-157A6CE11696} ID {436F64B3-D6A4-41F9-8D86-42E4A3011316} NegCoefficient 5000 Duration 1000000 PosCoefficient2 5000 InfiniteDuration 1 PosCoefficient 5000 NegCoefficient2 5000  absorbhit Compound ...

kind of hard to decipher I would say. Anyways. I'll mess around with it but how do I make it into a mod to test it out?
2004-04-26, 8:13 AM #4
Nooo... all the files are in assets... Like if you want to make new NPC's you look in idontknowsubfolder/npc.data and open it in wordpad.

If you want to alter the players force powers you need to do it with scripting like mine:

//Generated by BehavEd

rem ( "SP_start" );
set ( /*@SET_TYPES*/ "SET_FORCE_HEAL_LEVEL", /*@FORCE_LEVELS*/ "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_JUMP_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_SPEED_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_PUSH_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_PULL_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_MINDTRICK_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_GRIP_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_FORCE_LIGHTNING_LEVEL", "3" );
set ( /*@SET_TYPES*/ "SET_SABER_THROW", "3" );
set ( /*@SET_TYPES*/ "SET_SABER_DEFENSE", "3" );
set ( /*@SET_TYPES*/ "SET_SABER_OFFENSE", /*@FORCE_LEVELS*/ "3" );

Its so easy [http://forums.massassi.net/html/tongue.gif]

------------------
He cuts you with the words sun san...its quistion obi one.

When youre chased. With a correlian cruiser...Watch your back. Its quistion twozer

↑ Up to the top!