mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-27 13:54:45 +00:00
Anguta, Ceryshen ground vehicle terminal stuff
This commit is contained in:
parent
e1581c94e7
commit
df3b60882b
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue