2017-10-27 22:44:20 +00:00
|
|
|
// Copyright (c) 2017 PSForever
|
|
|
|
|
package objects
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
import net.psforever.objects._
|
2018-02-12 14:59:07 +00:00
|
|
|
import net.psforever.objects.definition.{SeatDefinition, VehicleDefinition}
|
2018-01-26 20:32:08 +00:00
|
|
|
import net.psforever.objects.vehicles._
|
2020-01-06 13:45:55 +00:00
|
|
|
import net.psforever.types.{PlanetSideGUID, _}
|
2017-10-27 22:44:20 +00:00
|
|
|
import org.specs2.mutable._
|
2018-01-26 20:32:08 +00:00
|
|
|
|
2017-10-27 22:44:20 +00:00
|
|
|
class VehicleTest extends Specification {
|
2018-03-20 00:13:39 +00:00
|
|
|
import VehicleTest._
|
2017-10-27 22:44:20 +00:00
|
|
|
|
|
|
|
|
"SeatDefinition" should {
|
|
|
|
|
val seat = new SeatDefinition
|
|
|
|
|
seat.ArmorRestriction = SeatArmorRestriction.MaxOnly
|
|
|
|
|
seat.Bailable = true
|
|
|
|
|
seat.ControlledWeapon = 5
|
|
|
|
|
|
|
|
|
|
"define (default)" in {
|
|
|
|
|
val t_seat = new SeatDefinition
|
|
|
|
|
t_seat.ArmorRestriction mustEqual SeatArmorRestriction.NoMax
|
|
|
|
|
t_seat.Bailable mustEqual false
|
2020-04-28 01:22:59 +00:00
|
|
|
t_seat.ControlledWeapon.isEmpty mustEqual true
|
2017-10-27 22:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"define (custom)" in {
|
|
|
|
|
seat.ArmorRestriction mustEqual SeatArmorRestriction.MaxOnly
|
|
|
|
|
seat.Bailable mustEqual true
|
2020-04-28 01:22:59 +00:00
|
|
|
seat.ControlledWeapon.contains(5)
|
2017-10-27 22:44:20 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"VehicleDefinition" should {
|
|
|
|
|
"define" in {
|
|
|
|
|
val fury = GlobalDefinitions.fury
|
|
|
|
|
fury.CanBeOwned mustEqual true
|
|
|
|
|
fury.CanCloak mustEqual false
|
|
|
|
|
fury.Seats.size mustEqual 1
|
|
|
|
|
fury.Seats(0).Bailable mustEqual true
|
2020-04-28 01:22:59 +00:00
|
|
|
fury.Seats(0).ControlledWeapon.contains(1)
|
2017-10-27 22:44:20 +00:00
|
|
|
fury.MountPoints.size mustEqual 2
|
2020-04-28 01:22:59 +00:00
|
|
|
fury.MountPoints.get(1).contains(0)
|
|
|
|
|
fury.MountPoints.get(2).contains(0)
|
2017-10-27 22:44:20 +00:00
|
|
|
fury.Weapons.size mustEqual 1
|
2020-04-28 01:22:59 +00:00
|
|
|
fury.Weapons.get(0).isEmpty mustEqual true
|
|
|
|
|
fury.Weapons.get(1).contains(GlobalDefinitions.fury_weapon_systema)
|
2017-11-09 02:00:46 +00:00
|
|
|
fury.TrunkSize.Width mustEqual 11
|
|
|
|
|
fury.TrunkSize.Height mustEqual 11
|
2017-10-27 22:44:20 +00:00
|
|
|
fury.TrunkOffset mustEqual 30
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"Seat" should {
|
|
|
|
|
val seat_def = new SeatDefinition
|
|
|
|
|
seat_def.ArmorRestriction = SeatArmorRestriction.MaxOnly
|
|
|
|
|
seat_def.Bailable = true
|
|
|
|
|
seat_def.ControlledWeapon = 5
|
|
|
|
|
|
|
|
|
|
"construct" in {
|
|
|
|
|
val seat = new Seat(seat_def)
|
|
|
|
|
seat.ArmorRestriction mustEqual SeatArmorRestriction.MaxOnly
|
|
|
|
|
seat.Bailable mustEqual true
|
2020-04-28 01:22:59 +00:00
|
|
|
seat.ControlledWeapon.contains(5)
|
2017-10-27 22:44:20 +00:00
|
|
|
seat.isOccupied mustEqual false
|
2020-04-28 01:22:59 +00:00
|
|
|
seat.Occupant.isEmpty mustEqual true
|
2017-10-27 22:44:20 +00:00
|
|
|
}
|
2017-11-06 15:24:36 +00:00
|
|
|
|
|
|
|
|
"player can sit" in {
|
|
|
|
|
val seat = new Seat(seat_def)
|
|
|
|
|
seat.Occupant.isDefined mustEqual false
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.ExoSuit = ExoSuitType.MAX
|
|
|
|
|
seat.Occupant = player1
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player1) mustEqual true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"one occupant at a time" in {
|
|
|
|
|
val seat = new Seat(seat_def)
|
|
|
|
|
seat.Occupant.isDefined mustEqual false
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.ExoSuit = ExoSuitType.MAX
|
|
|
|
|
seat.Occupant = player1
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player1) mustEqual true
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player2 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player2.ExoSuit = ExoSuitType.MAX
|
|
|
|
|
seat.Occupant = player2
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player1) mustEqual true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"one player must get out of seat before other can get in" in {
|
|
|
|
|
val seat = new Seat(seat_def)
|
|
|
|
|
seat.Occupant.isDefined mustEqual false
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.ExoSuit = ExoSuitType.MAX
|
|
|
|
|
seat.Occupant = player1
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player1) mustEqual true
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player2 = Player(avatar2)
|
2017-11-06 15:24:36 +00:00
|
|
|
player2.ExoSuit = ExoSuitType.MAX
|
|
|
|
|
seat.Occupant = player2
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player2) mustEqual false
|
|
|
|
|
seat.Occupant.contains(player1) mustEqual true
|
|
|
|
|
|
|
|
|
|
seat.Occupant = None
|
|
|
|
|
seat.Occupant.isDefined mustEqual false
|
|
|
|
|
seat.Occupant = player2
|
|
|
|
|
seat.Occupant.isDefined mustEqual true
|
|
|
|
|
seat.Occupant.contains(player2) mustEqual true
|
|
|
|
|
}
|
2017-10-27 22:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"Vehicle" should {
|
|
|
|
|
"construct" in {
|
|
|
|
|
Vehicle(GlobalDefinitions.fury)
|
|
|
|
|
ok
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"construct (detailed)" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.Owner.isEmpty mustEqual true
|
2017-10-27 22:44:20 +00:00
|
|
|
fury_vehicle.Seats.size mustEqual 1
|
2017-11-30 03:30:25 +00:00
|
|
|
fury_vehicle.Seats(0).ArmorRestriction mustEqual SeatArmorRestriction.NoMax
|
|
|
|
|
fury_vehicle.Seats(0).isOccupied mustEqual false
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.Seats(0).Occupant.isEmpty mustEqual true
|
2017-11-30 03:30:25 +00:00
|
|
|
fury_vehicle.Seats(0).Bailable mustEqual true
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.Seats(0).ControlledWeapon.contains(1)
|
|
|
|
|
fury_vehicle.PermissionGroup(0).contains(VehicleLockState.Locked) //driver
|
|
|
|
|
fury_vehicle.PermissionGroup(1).contains(VehicleLockState.Empire) //gunner
|
|
|
|
|
fury_vehicle.PermissionGroup(2).contains(VehicleLockState.Empire) //passenger
|
|
|
|
|
fury_vehicle.PermissionGroup(3).contains(VehicleLockState.Locked) //trunk
|
2017-10-27 22:44:20 +00:00
|
|
|
fury_vehicle.Weapons.size mustEqual 1
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.Weapons.get(0).isEmpty mustEqual true
|
2017-10-27 22:44:20 +00:00
|
|
|
fury_vehicle.Weapons.get(1).isDefined mustEqual true
|
|
|
|
|
fury_vehicle.Weapons(1).Equipment.isDefined mustEqual true
|
|
|
|
|
fury_vehicle.Weapons(1).Equipment.get.Definition mustEqual GlobalDefinitions.fury.Weapons(1)
|
|
|
|
|
fury_vehicle.WeaponControlledFromSeat(0) mustEqual fury_vehicle.Weapons(1).Equipment
|
|
|
|
|
fury_vehicle.Trunk.Width mustEqual 11
|
|
|
|
|
fury_vehicle.Trunk.Height mustEqual 11
|
|
|
|
|
fury_vehicle.Trunk.Offset mustEqual 30
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.GetSeatFromMountPoint(1).contains(0)
|
|
|
|
|
fury_vehicle.GetSeatFromMountPoint(2).contains(0)
|
2017-10-27 22:44:20 +00:00
|
|
|
fury_vehicle.Decal mustEqual 0
|
|
|
|
|
fury_vehicle.Health mustEqual fury_vehicle.Definition.MaxHealth
|
|
|
|
|
}
|
2017-11-06 15:24:36 +00:00
|
|
|
|
|
|
|
|
"can be owned by a player" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
|
|
|
|
fury_vehicle.Owner.isDefined mustEqual false
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.GUID = PlanetSideGUID(1)
|
|
|
|
|
fury_vehicle.Owner = player1
|
|
|
|
|
fury_vehicle.Owner.isDefined mustEqual true
|
|
|
|
|
fury_vehicle.Owner.contains(PlanetSideGUID(1)) mustEqual true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"ownership depends on who last was granted it" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
|
|
|
|
fury_vehicle.Owner.isDefined mustEqual false
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.GUID = PlanetSideGUID(1)
|
|
|
|
|
fury_vehicle.Owner = player1
|
|
|
|
|
fury_vehicle.Owner.isDefined mustEqual true
|
|
|
|
|
fury_vehicle.Owner.contains(PlanetSideGUID(1)) mustEqual true
|
|
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
val player2 = Player(avatar2)
|
2017-11-06 15:24:36 +00:00
|
|
|
player2.GUID = PlanetSideGUID(2)
|
|
|
|
|
fury_vehicle.Owner = player2
|
|
|
|
|
fury_vehicle.Owner.isDefined mustEqual true
|
|
|
|
|
fury_vehicle.Owner.contains(PlanetSideGUID(2)) mustEqual true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"can use mount point to get seat number" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.GetSeatFromMountPoint(0).isEmpty mustEqual true
|
|
|
|
|
fury_vehicle.GetSeatFromMountPoint(1).contains(0)
|
|
|
|
|
fury_vehicle.GetSeatFromMountPoint(2).contains(0)
|
|
|
|
|
fury_vehicle.GetSeatFromMountPoint(3).isEmpty mustEqual true
|
2017-11-06 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"has four permission groups" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id).contains(VehicleLockState.Locked)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Gunner.id).contains(VehicleLockState.Empire)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Passenger.id).contains(VehicleLockState.Empire)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Trunk.id).contains(VehicleLockState.Locked)
|
2017-11-06 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"set new permission level" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id).contains(VehicleLockState.Locked)
|
2020-07-14 03:54:05 +00:00
|
|
|
fury_vehicle
|
|
|
|
|
.PermissionGroup(AccessPermissionGroup.Driver.id, VehicleLockState.Group.id)
|
|
|
|
|
.contains(VehicleLockState.Group)
|
2017-11-06 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"set the same permission level" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
2020-04-28 01:22:59 +00:00
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id).contains(VehicleLockState.Locked)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id, VehicleLockState.Locked.id).isEmpty mustEqual true
|
2017-11-06 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"alternate permission level indices" in {
|
|
|
|
|
val fury_vehicle = Vehicle(GlobalDefinitions.fury)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id) mustEqual fury_vehicle.PermissionGroup(10)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Gunner.id) mustEqual fury_vehicle.PermissionGroup(11)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Passenger.id) mustEqual fury_vehicle.PermissionGroup(12)
|
|
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Trunk.id) mustEqual fury_vehicle.PermissionGroup(13)
|
|
|
|
|
|
|
|
|
|
(AccessPermissionGroup.Driver.id + 10) mustEqual 10
|
2020-07-14 03:54:05 +00:00
|
|
|
fury_vehicle
|
|
|
|
|
.PermissionGroup(AccessPermissionGroup.Driver.id, VehicleLockState.Group.id)
|
|
|
|
|
.contains(VehicleLockState.Group)
|
2017-11-06 15:24:36 +00:00
|
|
|
fury_vehicle.PermissionGroup(AccessPermissionGroup.Driver.id) mustEqual fury_vehicle.PermissionGroup(10)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"can determine permission group from seat" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.SeatPermissionGroup(0).contains(AccessPermissionGroup.Driver)
|
|
|
|
|
harasser_vehicle.SeatPermissionGroup(1).contains(AccessPermissionGroup.Gunner)
|
|
|
|
|
harasser_vehicle.SeatPermissionGroup(2).isEmpty mustEqual true
|
2017-11-06 15:24:36 +00:00
|
|
|
//TODO test for AccessPermissionGroup.Passenger later
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"can find a passenger in a seat" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
2020-07-14 03:54:05 +00:00
|
|
|
val player1 = Player(avatar1)
|
2017-11-06 15:24:36 +00:00
|
|
|
player1.GUID = PlanetSideGUID(1)
|
2018-03-20 00:13:39 +00:00
|
|
|
val player2 = Player(avatar2)
|
2017-11-06 15:24:36 +00:00
|
|
|
player2.GUID = PlanetSideGUID(2)
|
|
|
|
|
harasser_vehicle.Seat(0).get.Occupant = player1 //don't worry about ownership for now
|
|
|
|
|
harasser_vehicle.Seat(1).get.Occupant = player2
|
|
|
|
|
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.PassengerInSeat(player1).contains(0)
|
|
|
|
|
harasser_vehicle.PassengerInSeat(player2).contains(1)
|
2017-11-06 15:24:36 +00:00
|
|
|
harasser_vehicle.Seat(0).get.Occupant = None
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.PassengerInSeat(player1).isEmpty mustEqual true
|
|
|
|
|
harasser_vehicle.PassengerInSeat(player2).contains(1)
|
2017-11-06 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"can find a weapon controlled from seat" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
2020-07-14 03:54:05 +00:00
|
|
|
val chaingun_p = harasser_vehicle.Weapons(2).Equipment
|
2017-11-06 15:24:36 +00:00
|
|
|
chaingun_p.isDefined mustEqual true
|
|
|
|
|
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.WeaponControlledFromSeat(0).isEmpty mustEqual true
|
2017-11-06 15:24:36 +00:00
|
|
|
harasser_vehicle.WeaponControlledFromSeat(1) mustEqual chaingun_p
|
|
|
|
|
}
|
2018-02-12 14:59:07 +00:00
|
|
|
|
|
|
|
|
"can filter utilities with indices that are natural numbers" in {
|
|
|
|
|
val objDef = VehicleDefinition(1)
|
|
|
|
|
objDef.Utilities += -1 -> UtilityType.order_terminala
|
2020-07-14 03:54:05 +00:00
|
|
|
objDef.Utilities += 0 -> UtilityType.order_terminalb
|
|
|
|
|
objDef.Utilities += 2 -> UtilityType.order_terminalb
|
2018-02-12 14:59:07 +00:00
|
|
|
val obj = Vehicle(objDef)
|
|
|
|
|
|
|
|
|
|
obj.Utilities.size mustEqual 3
|
|
|
|
|
obj.Utilities(-1).UtilType mustEqual UtilityType.order_terminala
|
|
|
|
|
obj.Utilities(0).UtilType mustEqual UtilityType.order_terminalb
|
2020-04-28 01:22:59 +00:00
|
|
|
obj.Utilities.get(1).isEmpty mustEqual true
|
2018-02-12 14:59:07 +00:00
|
|
|
obj.Utilities(2).UtilType mustEqual UtilityType.order_terminalb
|
|
|
|
|
|
|
|
|
|
val filteredMap = Vehicle.EquipmentUtilities(obj.Utilities)
|
|
|
|
|
filteredMap.size mustEqual 2
|
2020-04-28 01:22:59 +00:00
|
|
|
filteredMap.get(-1).isEmpty mustEqual true
|
2018-02-12 14:59:07 +00:00
|
|
|
filteredMap(0).UtilType mustEqual UtilityType.order_terminalb
|
|
|
|
|
filteredMap(2).UtilType mustEqual UtilityType.order_terminalb
|
|
|
|
|
}
|
2018-05-16 04:27:25 +00:00
|
|
|
|
|
|
|
|
"access its mounted weapons by Slot" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
|
|
|
|
harasser_vehicle.Weapons(2).Equipment.get.GUID = PlanetSideGUID(10)
|
|
|
|
|
|
|
|
|
|
harasser_vehicle.Slot(2).Equipment.get.GUID mustEqual PlanetSideGUID(10)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"access its trunk by Slot" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
2020-07-14 03:54:05 +00:00
|
|
|
val ammobox = AmmoBox(GlobalDefinitions.armor_canister)
|
2018-05-16 04:27:25 +00:00
|
|
|
ammobox.GUID = PlanetSideGUID(10)
|
|
|
|
|
harasser_vehicle.Inventory += 30 -> ammobox
|
|
|
|
|
|
|
|
|
|
harasser_vehicle.Slot(30).Equipment.get.GUID mustEqual PlanetSideGUID(10)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"find its mounted weapons by GUID" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
|
|
|
|
harasser_vehicle.Weapons(2).Equipment.get.GUID = PlanetSideGUID(10)
|
|
|
|
|
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.Find(PlanetSideGUID(10)).contains(2)
|
2018-05-16 04:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"find items in its trunk by GUID" in {
|
|
|
|
|
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
2020-07-14 03:54:05 +00:00
|
|
|
val ammobox = AmmoBox(GlobalDefinitions.armor_canister)
|
2018-05-16 04:27:25 +00:00
|
|
|
ammobox.GUID = PlanetSideGUID(10)
|
|
|
|
|
harasser_vehicle.Inventory += 30 -> ammobox
|
|
|
|
|
|
2020-04-28 01:22:59 +00:00
|
|
|
harasser_vehicle.Find(PlanetSideGUID(10)).contains(30)
|
2018-05-16 04:27:25 +00:00
|
|
|
}
|
2017-10-27 22:44:20 +00:00
|
|
|
}
|
|
|
|
|
}
|
2018-01-26 20:32:08 +00:00
|
|
|
|
2018-03-20 00:13:39 +00:00
|
|
|
object VehicleTest {
|
2020-08-01 10:25:03 +00:00
|
|
|
import net.psforever.objects.avatar.Avatar
|
2018-03-20 00:13:39 +00:00
|
|
|
import net.psforever.types.{CharacterGender, PlanetSideEmpire}
|
2020-08-01 10:25:03 +00:00
|
|
|
|
|
|
|
|
val avatar1 = Avatar(0, "test1", PlanetSideEmpire.TR, CharacterGender.Male, 0, CharacterVoice.Mute)
|
|
|
|
|
val avatar2 = Avatar(1, "test2", PlanetSideEmpire.TR, CharacterGender.Male, 0, CharacterVoice.Mute)
|
2018-03-20 00:13:39 +00:00
|
|
|
}
|