Anguta, Ceryshen ground vehicle terminal stuff

This commit is contained in:
FateJH 2018-02-24 21:04:47 -05:00
parent e1581c94e7
commit df3b60882b
2 changed files with 20 additions and 2 deletions

View file

@ -22,7 +22,18 @@ object Maps {
val map5 = new ZoneMap("map05")
val map6 = new ZoneMap("map06")
val map6 = new ZoneMap("map06") {
//TODO TEST ceryshen
LocalObject(ServerObjectBuilder(3353, Terminal.Constructor(ground_vehicle_terminal)))
LocalObject(ServerObjectBuilder(500,
VehicleSpawnPad.Constructor(Vector3(3962.0f, 4334.0f, 268.0f), Vector3(0f, 0f, 180.0f))
)) //TODO guid not correct
LocalBuilding(2, FoundationBuilder(Building.Structure))
ObjectToBuilding(3353, 2)
ObjectToBuilding(500, 2)
TerminalToSpawnPad(3353, 500)
}
val map7 = new ZoneMap("map07")

View file

@ -13,7 +13,14 @@ object Zones {
val z5 = new Zone("z5", Maps.map5, 5)
val z6 = new Zone("z6", Maps.map6, 6)
val z6 = new Zone("z6", Maps.map6, 6) {
override def Init(implicit context : ActorContext) : Unit = {
super.Init(context)
import net.psforever.types.PlanetSideEmpire
Building(2).get.Faction = PlanetSideEmpire.VS
}
}
val z7 = new Zone("z7", Maps.map7, 7)