miked79 Posted January 7, 2015 Report Posted January 7, 2015 Id like to add a spawn point for BedFord Falls Mansion. ( the resident Evil style one)Im not sure how to do it! I have it so I can spawn in bedford falls random, but i wanna have an exact location! Thanks guys! vacatedhypnos 1
fluidkiller Posted January 7, 2015 Report Posted January 7, 2015 That's not really hard, you need to make 1 file(if it doesn't exist already) and edit one file. New file: ({server_name}_spawnpoints.lua -- Filename: {server_name}_spawnpoints.lua-- for example, in my case: servertest_spawnpoints.lua-- This is the specific function you need to use.-- This spawn-point is at twiggy's bar on the map.function SpawnPoints() return { unemployed = { { worldX = 40, worldY = 22, posX = 67, posY = 201 } } }endedit file: ({server_name}_spawnregions)function SpawnRegions() return {-- Standard spawn regions { name = "Muldraugh, KY", file = "media/maps/Muldraugh, KY/spawnpoints.lua" }, { name = "West Point, KY", file = "media/maps/West Point, KY/spawnpoints.lua" },--This little thing, is the custom spawn point, name it(it will show up when your player create's a new player), give the where the spawn points are definend(in my example, that will be servertest_spawnpoints.lua). -- Uncomment the line below to add a custom spawnpoint for this server. { name = "Twiggy's Bar", serverfile = "servertest_spawnpoints.lua" }, }endOh welp, I see you want it random.Well in that case, you need to backup the spawn points from Muldraugh and West Point.And I don't know exactly where you're location is exactly on the map.But you should edit one of those two and add the line from spawn points,To be more exact, this line:-- Edit the coordinates to the exact spot for your location, you can lookup at: http://pzmap.crash-override.net{ worldX = 40, worldY = 22, posX = 67, posY = 201 }If there are any other question's, I am willing to answer ^^, - fluidkiller ChicoRockz, miked79 and vacatedhypnos 3
miked79 Posted January 7, 2015 Author Report Posted January 7, 2015 nope! Worked like a charm! Thanks man! Very easy to understand intructions , kudos!!
vacatedhypnos Posted January 19, 2015 Report Posted January 19, 2015 This guide is great, by the way, thanks so much. Is there a way to determine coordinates at this point? Like Mike, I'd like to play around with spawn points but without coordinates, it could be a very long guessing game. I know there's a mod (http://pz-mods.net/other/CoordinateViewer/) but apparently it's out-of-date and I haven't tested it yet, just gathering information. Are there any other resources for this, by chance? Thanks again! Edit - I've been using this map forever (http://pzmap.crash-override.net/) and just now noticed the coordinates AND the flipping link at the bottom of fluidkiller's post. Forgive my idiocy!Double kudos to your post, fluid! 2nd edit - Just in case anyone sees this post, looking for the same thing... Apparently, there is an updated coordinates mod located here: http://pz-mods.net/gameplay/coord/
ChicoRockz Posted February 22, 2015 Report Posted February 22, 2015 Definitely saving this for my dedicated server. Thanks!Server IP: 108.174.61.18
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now