Thanks A Lot!
#12473 posted by Dunno on 2013/03/06 21:06:42
The main thing I love about open-source communities is that everyone is always so eager to help, even if their brains are half-asleep :D
I have windows installed on my Mac (boot camp), so I guess I can download those utilities for windows and use those. From what I understand, these formats are cross-platform compatible, right?
And I've already downloaded the WAD and read the help :)
Thanks again
P.S:
#12474 posted by Dunno on 2013/03/06 21:09:55
I use Terminal now and then, so I'll also give Mac utils a try :)
#12475 posted by JneeraZ on 2013/03/06 21:11:26
If you can use Windows, I would just use Windows. Tools and utilities for the Mac are few and far between...
But yes, the file formats are all compatible.
No, That's Not True
#12476 posted by SleepwalkR on 2013/03/06 21:48:11
Tyrann's tools are readily available for the Mac, so there's really no need to go to Windows for this. Also, the quakespasm engine (quakespasm.sourceforge.net) is cross-platform and runs very well on the Mac.
#12477 posted by JneeraZ on 2013/03/06 21:56:08
You can get by, yes. But you don't have many choices. There's usually one of everything so I hope you like it! :)
True
#12478 posted by SleepwalkR on 2013/03/06 22:15:06
But tyrann's tools are pretty good!
#12479 posted by JneeraZ on 2013/03/06 22:41:16
That they are.
#12480 posted by necros on 2013/03/07 04:04:01
and the compiling GUI doesn't run on the Mac.
rats, i've been thinking i should remake that gui in java for cross platform. :(
Me Again
#12481 posted by Dunno on 2013/03/07 18:25:34
So I've made my very first map in Trenchbroom and saved it as .map. Now I have a probably very silly problem - I'm clueless as to how I should install qbsp and other utils. It's not as simple as a double click, is it? Thanks!
Just place the compiling programs in the same folder as your .map file and run them like this -
qbsp.exe mymap
vis.exe mymap
light.exe mymap
Where mymap is the name of your map... once you have run all three it should load your level! (just hope you put some lights in there and also the info_player_start entity!)
#12483 posted by JneeraZ on 2013/03/07 18:55:58
You'll also have to copy the BSP file to your "quake/id1/maps" folder.
Translation To Mac ;-)
#12484 posted by SleepwalkR on 2013/03/07 19:02:25
Open a terminal and run the following
cd <path to your map>
./qbsp mymap
./vis mymap
./light mymap
Notes:
1. You can enter the path to your map file by dragging it onto terminal, so you can enter cd<space> and then just drag the folder where your map is located onto the terminal window. Then hit Return (in the Terminal).
2. I'm not sure whether the names of the compiler tools in the above description are accurate. They might be different.
3. You can download Mac versions of the compiler tools from http://disenchant.net
Thanks!
#12485 posted by Dunno on 2013/03/08 14:28:28
Funny, I've really searched many different help sites, but none said anything about putting map and utils in the same folder... the Mac utils still don't work, however (I'm on 10.6, maybe wrong version), so I'll have to stick to windows.
Thanks a lot, guys :)
#12486 posted by Dunno on 2013/03/08 15:40:30
I hope I don't bother you guys too much with my questions, but since there's not much help available I'm pretty much forced to ask people around. I've noticed the Create Brush Entity/Trigger/Teleport and the Teleport Destination entity, but I don't know how to make them work :/
Still, I am quite happy I got to the point where Quake finally recognizes my map :D
Thank you!
Oops
#12487 posted by Dunno on 2013/03/08 15:41:58
I forgot to explain that I'm trying to make a teleport, and that's what I need help with ;)
You Need
#12488 posted by ijed on 2013/03/08 16:21:40
Two things - the trigger area, which can be any brush, usually painted with a 'trigger' texture so you know what it is at a glance.
Turn that into an entity 'trigger_teleport' and make a info_teleport_destination.
Call the target of the trigger and the targetname of the destination the same thing, it doesn't matter what as long as they're the same.
"my_first_teleporter" or whatever :)
And it'll work. Problem is you won't be able to see the trigger in game - you'll just vanish and reappear at the destination when touching its area.
So you can include another brush there with the starfield texture which will make it a liquid volume, and look like the teleporters in the original maps.
Final thing to remember - all triggers are rectangles, if you include more brushes inside then they will just draw a big box over the top encompassing all of it to make a box.
In other words, prism trigger shape = rectange trigger volume.
It Works!
#12489 posted by Dunno on 2013/03/08 17:33:47
Hooray! Man, I love this feeling :D
However, two issues showed up. The powerups (quad damage and invisibility) don't work. I only used drag&drop, do they need extra attention? The other thing are messed up textures, like when you enter void with noclip. Can it be caused by a leak I've overlooked or something? The map is basically a box with flying ledges connected with stairs and bridges, maybe the box is too big?
Thanks again, I'm having wonderful fun :D
Powerups
#12490 posted by Preach on 2013/03/08 18:22:46
My guess is that the powerups have fallen out of the level. In game, enter "developer 1" in the console before running your map and you should get a message telling you when they fall out. If so, try placing them a bit higher up - you want to avoid them intersecting the floor.
Powerups
#12491 posted by ijed on 2013/03/08 18:30:01
Should just work without anything else needed. Not sure what's going on there.
The second issue sounds like the HOM or Hall of Mirrors effect. That means you've got some weird brushes that are making the vis process break.
Look for stuff that's very small. Try not to get smaller than 8 units unless it's for something that's also a func_door, func_wall or whatever.
#12492 posted by negke on 2013/03/08 18:40:38
How big is the box and which engine do you run the map on? Sounds like Winquake choking on a huge box and items disappearing either due to an overflow or because they spawn in midair and drop down from a great height. If this is the case, reduce the size or switch to a modern sourceport (QuakeSpasm).
#12493 posted by negke on 2013/03/08 18:42:58
Or alternatively increase the texture scale of the box brushes to some large number, e.g. 99.
Weird New Map Problem
I did a bit of work on my map today and suddenly in the console it's giving this message -
mod_loadtexinfo one or more textures is missing from bsp file
But I have looked around the level and nothing seems out of place? Could this be some kind of limit that I have reached?
I Think That Was All :)
#12495 posted by Dunno on 2013/03/09 12:34:34
Thank you all again, I think I finally got it all working. Now I just need to work on balance and good light, which is pure pleasure :)
FifthElephant
Did you remember to list all the .wads in worldspawn?
OTP,
I've not changed or added any new wads, been working from the same files this whole time but only in the most recent rebuilds it's sending this message.
|