|
 |
« Reply #11535 on: July 09, 2012, 02:27:38 PM » |
|
ok, well, i have a question about lookign at .rels (since i wanna learn more about porting). do you knwo what teh "imports" folder does? i was lokign at 2 differenct edited marth.rels adn 1 original, and teh second fiel in the imports fodler is changed
I'm pretty sure that imports are other REL file references that that REL uses, usually including itself. The imports folder has a decryption command list for each import file.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11536 on: July 09, 2012, 02:29:34 PM » |
|
ah. i see (lol nto really i got even more confused)
so, i saw on teh list in the OP .rels are being worked on. is that (referign to a ebtter way tpo view .rels) gunna be in teh next BB?
|
|
|
Logged
|
Quotes: Not all people have the luxury of being able to buy things whenever they want.
Some people are barely scraping by in the economy.
Modding has made you guys so spoiled.
|
|
|
|
|
 |
« Reply #11537 on: July 09, 2012, 02:31:12 PM » |
|
ah. i see (lol nto really i got even more confused)
so, i saw on teh list in the OP .rels are being worked on. is that (referign to a ebtter way tpo view .rels) gunna be in teh next BB?
LOLno, don't look forward to it for a long time unless someone pops out of nowhere and wants to help me with it. Brawl Box 0.69
^
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11538 on: July 09, 2012, 02:32:02 PM » |
|
ah, okay. THAT is what i look foreward too.
>.> <.< . . . Someone go invent me a time machine.
|
|
|
Logged
|
Quotes: Not all people have the luxury of being able to buy things whenever they want.
Some people are barely scraping by in the economy.
Modding has made you guys so spoiled.
|
|
|
|
|
 |
« Reply #11539 on: July 09, 2012, 02:49:03 PM » |
|
Knowing fixes will be updated by today or maybe tomorrow (if some bugs are being messy and are the cause of a delay) brawlbox will become even more useful/stable :-) !
Looking forward to the update ^,u.
**Can I change how the actions are labeled? (274 = 112). I would love to have them as hex idk so used to it heh, but I can deal with it.
Nope, you're gonna have to learn to use decimal from now on.  yeah decimal got me confused also lol bj96 a sugestion when he open the fitchar.pac on bb is there any way you can let us upload the pcs model? and on every bone reff we would see the bone name instead of the index? you know like in tabuu?
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11540 on: July 09, 2012, 02:52:07 PM » |
|
yeah decimal got me confused also lol
bj96 a sugestion when he open the fitchar.pac on bb is there any way you can let us upload the pcs model? and on every bone reff we would see the bone name instead of the index? you know like in tabuu?
Right click the moveset node and click Load Model... You can even choose the FitChar##.pac and it will load the first model in the pac.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11541 on: July 09, 2012, 03:11:44 PM » |
|
Right click the moveset node and click Load Model... You can even choose the FitChar##.pac and it will load the first model in the pac.
great i tryed looking for it and i didnt found that option now i know where to look 
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11542 on: July 09, 2012, 03:25:35 PM » |
|
This is really neat. Being able to add new Actions. But I can't seem to get this new Action to work ingame. Is there any extra coding you need to do? <_> It doesn't freeze, it's just when the Action is called up, the character stays on a single frame and cannot move at all.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11543 on: July 09, 2012, 03:29:24 PM » |
|
This is really neat. Being able to add new Actions. But I can't seem to get this new Action to work ingame. Is there any extra coding you need to do? <_> It doesn't freeze, it's just when the Action is called up, the character stays on a single frame and cannot move at all.
Try copying some action flags and unknown7 flags from another action. When you add a new action, the unk7 flags and action flags default to all 0. There might be an "Enabled" flag somewhere that needs to be on.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11544 on: July 09, 2012, 03:34:32 PM » |
|
Try copying some action flags and unknown7 flags from another action. When you add a new action, the unk7 flags and action flags default to all 0. There might be an "Enabled" flag somewhere that needs to be on.
That's what I did. Before I put in an Unkown 7, the character would do the same thing, but fall through the stage instead of sitting in place.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11545 on: July 09, 2012, 03:40:21 PM » |
|
That's what I did. Before I put in an Unkown 7, the character would do the same thing, but fall through the stage instead of sitting in place.
Just keep messing with the flags until it works :O
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11546 on: July 09, 2012, 03:41:44 PM » |
|
When this fix comes through, I'm gonna try to make the Box crawl. If I do it right, a tutorial on adding Actions thoroughly will happen.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11547 on: July 09, 2012, 04:14:54 PM » |
|
O.o woot cant wait for update.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11548 on: July 09, 2012, 05:15:44 PM » |
|
I've got a brawlLib question, how can I copy the audiostream from a RWSDSoundNode? I want to grab the sound but release the file.
|
|
|
Logged
|
|
|
|
|
|
 |
« Reply #11549 on: July 09, 2012, 05:26:27 PM » |
|
I've got a brawlLib question, how can I copy the audiostream from a RWSDSoundNode? I want to grab the sound but release the file.
You can create a completely new audiostream by calling IAudioStream newStream = new ADPCMStream(node.Header, node._dataAddr); where node is the RWSDSoundNode. That will create a new stream seperate from the stream variable stored in the node.
|
|
|
Logged
|
|
|
|
|
|