Thanks, as requested by SCP-513, I'm adding a Mapping section, and expanding from Source Code for Dummies! to Modding for Dummies!.Glitch wrote:Unlocking as Peanut wants to update this.
Re: Source Code for Dummies! (+Q&A)
#12Yes. I was patiently waiting for that. Thank you.mrpeanut188 wrote:Thanks, as requested by SCP-513, I'm adding a Mapping section, and expanding from Source Code for Dummies! to Modding for Dummies!.Glitch wrote:Unlocking as Peanut wants to update this.
Re: Source Code for Dummies! (+Q&A)
#13Okay, lemme just open the 3D World Studio Manual. It won't go in-depth in the user interface, but shows the basics of making a room look Vanilla.SCP 513 wrote:Yes. I was patiently waiting for that. Thank you.
Re: Modding for Dummies! (+Q&A)
#14Yea, you'll need a B3D compiler as guards and mtf units share a model. (The guard body texture is applied at run-time)LittleOldMan wrote:I am currently trying to create seperate helmets for MTFs and Guards
Will I need blitz3d for this or can i just keep trying to use notepad onthe script?
M-x dingus-mode
Re: Modding for Dummies! (+Q&A)
#15Some behind the scenes edits have been slowly happening. Now, I need some info for the mapping section.
Below is the code for creating the player's collision sphere.
Now, a radius of .15, and a vertical radius of .30. a 1/2 scale. Now, what is the default sphere dimensions?
If I put
How large would the sphere be in Units?
[Edit]
I think I have the answer.... 365 units is the default diameter of the player sphere, leading me to believe the player has a collision hull of 55 by 110. It fits the ratio, and I think it might actually be that number doubled.
Below is the code for creating the player's collision sphere.
Code: Select all
Collider = CreatePivot()
EntityRadius Collider, 0.15, 0.30
EntityPickMode(Collider, 1)
EntityType Collider, HIT_PLAYER
If I put
Code: Select all
EntityRadius Collider, 1, 1
[Edit]
I think I have the answer.... 365 units is the default diameter of the player sphere, leading me to believe the player has a collision hull of 55 by 110. It fits the ratio, and I think it might actually be that number doubled.
Re: NEEDS EPIC MATH HELP! - Modding for Dummies! (+Q&A)
#16Hmm... I have 3D Studio working, and can make a basic room, but I am not quite sure how to get the models & textures for doors and desks, etc. from SCP:CB's resources? Some help here?
Have motivation, but a noob.
Also, poking around in resources a bit, it seems that there are large .jpgs that are basically the textures for entire rooms, although they do seem to be compressed..?
Am I right about this?
Have motivation, but a noob.
Also, poking around in resources a bit, it seems that there are large .jpgs that are basically the textures for entire rooms, although they do seem to be compressed..?
Am I right about this?
[SCP-076] "Able"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"
Re: NEEDS EPIC MATH HELP! - Modding for Dummies! (+Q&A)
#17Copy the contents from the GFX\map directory from Containment Breach, and paste them into 'C:\Program Files (x86)\3D World Studio\Materials' directory. If you do not have a Program Files (x86) directory, go substitute it with 'Program Files'.ZarHakkar wrote:Hmm... I have 3D Studio working, and can make a basic room, but I am not quite sure how to get the models & textures for doors and desks, etc. from SCP:CB's resources? Some help here?
Delete everything but the .PNGs and .JPGs, it's easier if you sort the folder by File Type.
You mean the black textures? It's from exporting the maps, it's minor geometry.ZarHakkar wrote: Also, poking around in resources a bit, it seems that there are large .jpgs that are basically the textures for entire rooms, although they do seem to be compressed..?
Am I right about this?
Sorry for not having everything set up yet, as said in the OP it's still being written.
Re: NEEDS EPIC MATH HELP! - Modding for Dummies! (+Q&A)
#18I apologize if I had mislead you in my question, as I had actually figured out how to do that right off the bat. Like, that's literally the first thing I did, before starting up 3D World Studio. What I was actually trying to ask, is, how to load models and their assorted textures from SCP:CB into 3DWS. Not walls and floor textures, but things like desks, power boxes, buttons, doors, etc., you know? Do they have to be converted and assembled in an external program or whatnot, first?mrpeanut188 wrote:Copy the contents from the GFX\map directory from Containment Breach, and paste them into 'C:\Program Files (x86)\3D World Studio\Materials' directory. If you do not have a Program Files (x86) directory, go substitute it with 'Program Files'.ZarHakkar wrote:Hmm... I have 3D Studio working, and can make a basic room, but I am not quite sure how to get the models & textures for doors and desks, etc. from SCP:CB's resources? Some help here?
Delete everything but the .PNGs and .JPGs, it's easier if you sort the folder by File Type.
Oh, that's absolutely fine, I understand.mrpeanut188 wrote:Sorry for not having everything set up yet, as said in the OP it's still being written.
Cool thing; after reading both your and InnocentSam's guides, I actually made a room that looks quite Containment Breachy. Sadly no props/models from the game, so I had to improvise...
Pics of the room I call Maintenance Tunnels Access:
Spoiler
Spoiler
Spoiler
Did I done good?
Last edited by ZarHakkar on Tue Jul 09, 2013 8:10 am, edited 1 time in total.
[SCP-076] "Able"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"
Re: NEEDS EPIC MATH HELP! - Modding for Dummies! (+Q&A)
#19You have done well, young padawan. Unfortunately, I'm not sure if the desks and whatnot are models, I think they were premade in 3Ds World Studio, then replicated for each room. I think I may to reverse engineer them to their exact dimensions, and then just schooch the textures. I'll send Regalis a PM, see what I can do. I can also ask about my math question to hit two birds with one stone. (Hopefully Regalis is not a bird.)
Oh, if you would like to request something you think is important, just tell me and I'll put it on my priorities to add it to the guide.
Oh, if you would like to request something you think is important, just tell me and I'll put it on my priorities to add it to the guide.

Re: NEEDS EPIC MATH HELP! - Modding for Dummies! (+Q&A)
#20Thanks.
See, I have been a big fan of the SCP Foundation ever since I found it, and when I heard of SCP:CB, I nearly died of excitement. After playing for quite a bit, I started thinking of all these things that could be added to it, to make it even more immersive and challenging. You see, in my signature, those aren't my favorite SCPs, those are SCPs that I think should be implemented in some form or another. (And that's why I am now learning to mod this)
Oh, and, funny thing, the registration question on here is: "What does SCP stand for?" Even though the answer is: Secure, Contain, Protect, the real meaning is Special Containment Procedures. Could you ask Regalis to add that as answer, too? Just sayin'. (Ahem, HUGE* Foundation fan.)
*edit* Oh yeah, I also do concept art. And art of SCPs.
See, I have been a big fan of the SCP Foundation ever since I found it, and when I heard of SCP:CB, I nearly died of excitement. After playing for quite a bit, I started thinking of all these things that could be added to it, to make it even more immersive and challenging. You see, in my signature, those aren't my favorite SCPs, those are SCPs that I think should be implemented in some form or another. (And that's why I am now learning to mod this)
Oh, and, funny thing, the registration question on here is: "What does SCP stand for?" Even though the answer is: Secure, Contain, Protect, the real meaning is Special Containment Procedures. Could you ask Regalis to add that as answer, too? Just sayin'. (Ahem, HUGE* Foundation fan.)
*edit* Oh yeah, I also do concept art. And art of SCPs.
[SCP-076] "Able"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"
[SCP-127] "The Living Gun"
[SCP-212] "The Improver"
[SCP-303] "The Doorman"
[SCP-1162] "A Hole in the Wall"