Inside3D!
     

using custom maps
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Inside3d Forums Forum Index -> Mapping
View previous topic :: View next topic  
Author Message
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Tue Oct 10, 2006 12:56 am    Post subject: using custom maps Reply with quote

how do you use custom single player maps in a mod.
Back to top
View user's profile Send private message Visit poster's website
Spirit



Joined: 20 Nov 2004
Posts: 476

PostPosted: Tue Oct 10, 2006 7:47 am    Post subject: Reply with quote

Put them in /yourmod/maps?
Make sure you read the txt and/or ask the author for permission.
Back to top
View user's profile Send private message Visit poster's website
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Tue Oct 10, 2006 8:59 am    Post subject: Reply with quote

i did that but it still didn't work
Back to top
View user's profile Send private message Visit poster's website
Dr. Shadowborg
Inside3D Staff


Joined: 16 Oct 2004
Posts: 726

PostPosted: Tue Oct 10, 2006 4:02 pm    Post subject: Reply with quote

Try running quake like this:

Quake.exe -game yourmod +map yourmap

Or, alternately, type "map yourmap" at the console.
_________________
"Roboto suggests Plasma Bazooka."
Back to top
View user's profile Send private message
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Wed Oct 11, 2006 1:27 am    Post subject: Reply with quote

ok that finds the map but (theres aways a but) it sayscouldn't spawn server maps/test.bsp and dose not load the map. also what is the should the map be saved as .map or .bsp i have read that its .map but this has me thinking otherwise.
Back to top
View user's profile Send private message Visit poster's website
Entar



Joined: 05 Nov 2004
Posts: 422
Location: At my computer

PostPosted: Wed Oct 11, 2006 2:33 am    Post subject: Reply with quote

.bsp - you'll need a compiler ( I recommend hmap2 which can be found at the DarkPlaces site http://icculus.org/twilight/darkplaces ) to make a .bsp file out of a .map.
_________________
woh... feelin woozy... too much cider...
http://entar.quakedev.com
games fascination - My Game Development Blog/Journal
Back to top
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Wed Oct 11, 2006 5:18 am    Post subject: Reply with quote

i got that but i can not get it to work and its not real clear in the read me on how to use it
Back to top
View user's profile Send private message Visit poster's website
HeadThump



Joined: 14 May 2006
Posts: 74
Location: Zin

PostPosted: Wed Oct 11, 2006 9:37 pm    Post subject: Reply with quote

if the engine refused to spawn the map it could also mean that you don't have a player start entity in your bsp file.
Back to top
View user's profile Send private message
Entar



Joined: 05 Nov 2004
Posts: 422
Location: At my computer

PostPosted: Wed Oct 11, 2006 10:24 pm    Post subject: Reply with quote

HeadThump wrote:
if the engine refused to spawn the map it could also mean that you don't have a player start entity in your bsp file.

Yeah, but it usually tells you that's the problem (i.e. "No info_player_start")
_________________
woh... feelin woozy... too much cider...
http://entar.quakedev.com
games fascination - My Game Development Blog/Journal
Back to top
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Thu Oct 12, 2006 1:53 am    Post subject: Reply with quote

i have that. i need to compile the .map to a .bsp
_________________
http://bradshub.ath.cx - take a look at my web site.

Come on, admit it. You're the smartest person you know.
Back to top
View user's profile Send private message Visit poster's website
HeadThump



Joined: 14 May 2006
Posts: 74
Location: Zin

PostPosted: Thu Oct 12, 2006 2:36 am    Post subject: Reply with quote

okay, here is the quick and dirty way to get a map to compile into a bsp. I'm skipping editor set ups and the like. There are smoother ways to do this but I like to do things manually.

Down load these two files:

http://user.tninet.se/~xir870k/txqbspbjp.zip

http://user.tninet.se/~xir870k/visbjp.zip

put the executables light.exe, vis.exe, txqbsp.exe in a folder. I use c:\maps, same structure I've used for years. Put your .map file along with them. Bring up the Notepad program, assuming you are on a Windows based platform. Write this out, 'txqbsp mymap.map
vis mymap.bsp light -extra mymap.bsp'.

Save this as something like, mymap.bat in the same folder with everything else. It is important to save it with the .bat extension.
Double click on the new bat file, and things will process. When it is finished, open up the file labled, Qbsp_Log.txt, and scan down to the bottom. There you will find your errors, like, 'WARNING: No entities in empty space -- no filling performed' (though that one is just a warning, it is still a decent example).

Now, go to this site, http://user.tninet.se/~xir870k/tooltips.txt
look up your errors, and fix them according to the directions given. When your map is error free, it will compile into a bsp which can be played by using the command lines quoted in post above.
Back to top
View user's profile Send private message
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Thu Oct 12, 2006 3:41 am    Post subject: Reply with quote

i did that but the thing opens and closes realy fast. i also don't get a file called Qbsp_Log.txt i get one called VIS.txt wtf
_________________
http://bradshub.ath.cx - take a look at my web site.

Come on, admit it. You're the smartest person you know.
Back to top
View user's profile Send private message Visit poster's website
HeadThump



Joined: 14 May 2006
Posts: 74
Location: Zin

PostPosted: Thu Oct 12, 2006 3:36 pm    Post subject: Reply with quote

the compile process will generate Qbsp_log.txt, vis.log and light.log (among other files like, mymap.vis, mymap.prt). Even if a bsp file isn't created, it will generate the Qbsp_log.txt, if the .bat program is written correctly and if the txQbsp.exe file is in the same folder (you can use other folders but it requires a slightly more complex instruction set in the .bat file).

mymap.map
txqbsp.exe
vis.exe
light.exe
mymap.bat

all in the same folder. the .bat file (a simple text file with a .bat extension) written out like this:

txqbsp.exe mymap.map
vis.exe mymap.bsp
light.exe -extra mymap.bsp


Extra is not really necessary in the light compilation, but who wants to see jaggies. Keep trying from the start if it doesn't work the first dozen times or so. Likely you have a spelling error in the bat (short for batch) program you created.
Back to top
View user's profile Send private message
not_l33t



Joined: 08 Oct 2006
Posts: 32
Location: Downunder

PostPosted: Thu Oct 12, 2006 11:53 pm    Post subject: Reply with quote

ok its working now. the problem was that is didn't have the .bat file wrong, which i thought i had done and if u hadn't replied today i was going to have another look at it.

thanks Very Happy
_________________
http://bradshub.ath.cx - take a look at my web site.

Come on, admit it. You're the smartest person you know.
Back to top
View user's profile Send private message Visit poster's website
HeadThump



Joined: 14 May 2006
Posts: 74
Location: Zin

PostPosted: Sat Oct 14, 2006 5:42 am    Post subject: Reply with quote

When I began mapping, I was the noobiest noobie in all of Noobiedom. Nothing I tried ever worked as it should on the first go at it.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Inside3d Forums Forum Index -> Mapping All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2004 phpBB Group