Project Zomboid

Project Zomboid

36 个评价
Kingsmouth B42
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
更新日期
22.978 MB
6 月 13 日 上午 7:40
8 月 6 日 上午 2:07
6 项改动说明 ( 查看 )

订阅以下载
Kingsmouth B42

描述
Project Zomboid vanilla challenge map Kingsmouth in KY for B42

Versión to be used on KY, challenge mode in research (many bugs)

Alternative north location:
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=3498573050

Ocuppied cells:
(25,62),(26,65),(28,63),(29,66)
(25,63),(26,66),(28,64),(30,62)
(25,64),(27,62),(28,65),(30,63)
(25,65),(27,63),(28,66),(30,64)
(25,66),(27,64),(29,62),(30,65)
(26,62),(27,65),(29,63),(30,66)
(26,63),(27,66),(29,64)
(26,64),(28,62),(29,65)


To delete chunks of an already visited area use this:

[buchojefe.github.io]
You should only do it if you already have a saved game; it's not necessary to delete the chunks for a new game

Workshop ID: 3498269494
Mod ID: KingsmouthB42
Map Folder: Kingsmouth B42

If you enjoy my work, feel free to toss me a coin.

[ko-fi.com]
[cafecito.app]
热门讨论 查看全部(1)
0
6 月 13 日 上午 7:49
置顶: Bugs report
BuchoJefe
25 条留言
iamdnid 8 月 10 日 下午 12:35 
why would this mod not show up in the mod list?
Blood 7 月 10 日 上午 4:59 
Any version for 42 that's just the island solo?
BuchoJefe  [作者] 6 月 25 日 上午 3:17 
@丰盛的基因科学家 I'll study it to see how it differs from the original challenge, but first, I'll likely release the original challenge as is, and then we'll see if other modifications are worthwhile.
BuchoJefe  [作者] 6 月 25 日 上午 3:13 
@Justice, If you're playing with the Raven Creek mod, I recommend building the bridge to the west and then heading to RC for supplies to continue. Otherwise, I'd build to the north or towards the lighthouse located northeast.
Justice 6 月 25 日 上午 3:06 
If i want to get to KY where should i start building a bridge?
丰盛的基因科学家 6 月 23 日 下午 8:34 
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2330150239&searchtext=kingsmouth+sandbox you could do a version like this which wouldnt have the rest of the kentucky world attached to it. it was always my favorite challenge clearing it out in b41
MV75 6 月 22 日 下午 6:10 
Thank you for that info. I'll hopefully find where I get the world x/y (cell) numbers from now I know what to look for.
BuchoJefe  [作者] 6 月 20 日 上午 1:01 
@MV75, No, each map cell in B41 was 300x300, but now in B42, they are 256x256. Let's take the first coordinate you gave me as an example:

{ posX = 6917, posY = 16544, posZ = 0 }, --Cabins

To convert it into a valid spawn point, we need to:

1. Retain B41 positioning, as spawn points are converted internally by the game. This means, even in B42, we must divide each value by 300.
2. Now we have the cell values: X=23 and Y=55.
3. Next, we need to convert these global coordinates to local cell coordinates.
Cell X=23 --> 23∗300=6900, posX=6917 --> local posX=6917−6900=17
Cell Y=55 --> 55∗300=16500, posY=16544 --> local posY=16544−16500=44
4. Now we assemble the line according to the spawn point format:
{ worldX = 23, worldY = 55, posX = 17, posY = 44, posZ = 0 }

worldX=Cell X, worldy=Cell Y
MV75 6 月 19 日 下午 11:59 
Ok, I think I sort of get it, one game map cell is 300x300 tiles with 256x256 pixels per each tile unit? I just need to know where to get the information of the current game cell from and where in it those 256 points lay. Like when I got those co-ords I just right clicked and saw the x/y reference, they seem to suffice though for now. I know the z is height.
BuchoJefe  [作者] 6 月 19 日 下午 9:00 
@MV75, Thanks, what you provided is sufficient. In B42, spawn points must be referenced to 300x300 cells, while other elements like objects.lua need to be converted to their new 256x256 coordinates. Specifically, you can use a map in its previous location by reconverting coordinates, except for spawn points; you shouldn't touch them because the game handles that conversion internally.