[SOLVED] What must be in the pk3 order to run the map? - Printable Version +- Xonotic Forums (https://forums.xonotic.org) +-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3) +--- Forum: Xonotic - Help & Troubleshooting (https://forums.xonotic.org/forumdisplay.php?fid=4) +--- Thread: [SOLVED] What must be in the pk3 order to run the map? (/showthread.php?tid=5731) |
What must be in the pk3 order to run the map? - Brot - 08-04-2015 Hi, I've made a map in netradiant and exported as a .bsp file. Then i put the .map file and the .bsp file in a zip-archive and unnamed to .pk3, but nothing happens. And i never made a map before. Which Files i have to put in the .pk3-archive to? Sry for my bad english Thanks for an help RE: What must be in the pk3 order to run the map? - machine! - 08-04-2015 I don't remember and someone will probably answer this shortly, but you can download a random map, unzip it and then simply look how they placed all files. Note that its the root directory that needs to be zipped, sometimes if you zip the map folder itself it creates an redundant folder. RE: What must be in the pk3 order to run the map? - Brot - 08-04-2015 (08-04-2015, 09:12 AM)machine! Wrote: I don't remember and someone will probably answer this shortly, but you can download a random map, unzip it and then simply look how they placed all files. Note that its the root directory that needs to be zipped, sometimes if you zip the map folder itself it creates an redundant folder.Thx for the answer RE: What must be in the pk3 order to run the map? - Mirio - 08-04-2015 Create a folder called "maps", put the bsp and map file into it and zip that folder. That was missing. Looking at other pk3s is good. You should also include a mapinfo (txt file) file (see in other pk3s) and a picture of your map. Just needs a screenshot with the same name like bsp (mymap. jpg). You can remove the HUD etc. with r_letterbox 1 to get a good picture. RE: What must be in the pk3 order to run the map? - Brot - 08-04-2015 (08-04-2015, 11:28 AM)Mirio Wrote: Create a folder called "maps", put the bsp and map file into it and zip that folder. That was missing.Thanks RE: What must be in the pk3 order to run the map? - Mirio - 08-04-2015 And post your map here in the forums RE: What must be in the pk3 order to run the map? - BuddyFriendGuy - 08-04-2015 For clarity, here's the summary (for other newbies like me): Assuming you are making a map called "test". A useable test.pk3 package should have at least the following files: Code: maps/test.bsp It is highly recommend to also include these files: Code: maps/test.map Explanation:
The other things you may want to plan ahead is the versioning and naming of your files. That's a whole other discussion, but basically, you want to include your version info somewhere -- some just rename their package as "test_1c.pk3", and still has maps/test.* as the content. Some change names of both the pk3 and the contents. It's highly recommend that you have a single release location for your map (and include that URL in your readme file). Using the forum to be that page, as Mirio suggested, is a good practice. RE: What must be in the pk3 order to run the map? - Brot - 08-05-2015 (08-04-2015, 04:32 PM)BuddyFriendGuy Wrote: For clarity, here's the summary (for other newbies like me):Thanks. Now my lolfisch.mapinfo file looks like this Code: title Lolfisch RE: What must be in the pk3 order to run the map? - Mirio - 08-05-2015 add the line "has weapons" Also you can add tdm, kh, ka, ft and ca as they don't need some point of extra support RE: What must be in the pk3 order to run the map? - BuddyFriendGuy - 08-05-2015 EDIT: Didn't realize Mirio already answered. What he said. (08-05-2015, 09:41 AM)Brot Wrote: but nothing happens then i've written gametype cts. And now i can play the map in cts but not in dm or tdm Try this Code: title Lolfisch I'm assuming you have the right entities for DM and CTF (info_player_*, item_flag_*, etc.) in your map. Please always add description. You may want to remove "[SOLVED]" in the title when you still have questions. RE: What must be in the pk3 order to run the map? - Brot - 08-05-2015 (08-05-2015, 11:17 AM)BuddyFriendGuy Wrote:(08-05-2015, 09:41 AM)Brot Wrote: but nothing happens then i've written gametype cts. And now i can play the map in cts but not in dm or tdm Thank you so much |