class PUBG::Telemetry
Public Class Methods
new(args)
click to toggle source
# File lib/pubg/telemetry.rb, line 12 def initialize(args) @args = args end
Public Instance Methods
LogCarePackageLand()
click to toggle source
# File lib/pubg/telemetry.rb, line 104 def LogCarePackageLand end
LogCarePackageSpawn()
click to toggle source
# File lib/pubg/telemetry.rb, line 96 def LogCarePackageSpawn end
LogGameStatePeriodic()
click to toggle source
# File lib/pubg/telemetry.rb, line 60 def LogGameStatePeriodic end
LogItemAttach()
click to toggle source
# File lib/pubg/telemetry.rb, line 76 def LogItemAttach end
LogItemDetach()
click to toggle source
# File lib/pubg/telemetry.rb, line 88 def LogItemDetach end
LogItemDrop()
click to toggle source
# File lib/pubg/telemetry.rb, line 80 def LogItemDrop end
LogItemUse()
click to toggle source
# File lib/pubg/telemetry.rb, line 92 def LogItemUse end
LogMatchDefinition()
click to toggle source
# File lib/pubg/telemetry.rb, line 52 def LogMatchDefinition end
LogMatchEnd()
click to toggle source
# File lib/pubg/telemetry.rb, line 108 def LogMatchEnd end
LogMatchStart()
click to toggle source
# File lib/pubg/telemetry.rb, line 56 def LogMatchStart end
LogPlayerKill()
click to toggle source
# File lib/pubg/telemetry.rb, line 84 def LogPlayerKill end
LogPlayerLogout()
click to toggle source
# File lib/pubg/telemetry.rb, line 72 def LogPlayerLogout end
LogPlayerTakeDamage()
click to toggle source
# File lib/pubg/telemetry.rb, line 68 def LogPlayerTakeDamage end
LogVehicleDestroy()
click to toggle source
# File lib/pubg/telemetry.rb, line 100 def LogVehicleDestroy end
LogVehicleLeave()
click to toggle source
# File lib/pubg/telemetry.rb, line 64 def LogVehicleLeave end
itemEquip()
click to toggle source
# File lib/pubg/telemetry.rb, line 40 def itemEquip @args.select {|data| data["_T"] == "LogItemEquip" } end
itemPickup()
click to toggle source
# File lib/pubg/telemetry.rb, line 36 def itemPickup @args.select {|data| data["_T"] == "LogItemPickup" } end
itemUnequip()
click to toggle source
# File lib/pubg/telemetry.rb, line 44 def itemUnequip @args.select {|data| data["_T"] == "LogItemUnequip" } end
original()
click to toggle source
# File lib/pubg/telemetry.rb, line 16 def original @args end
playerAttack()
click to toggle source
# File lib/pubg/telemetry.rb, line 32 def playerAttack @args.select {|data| data["_T"] == "LogPlayerAttack" } end
playerCreate()
click to toggle source
# File lib/pubg/telemetry.rb, line 24 def playerCreate @args.select {|data| data["_T"] == "LogPlayerCreate" } end
playerLogin()
click to toggle source
# File lib/pubg/telemetry.rb, line 20 def playerLogin @args.select {|data| data["_T"] == "LogPlayerLogin" } end
playerPosition()
click to toggle source
# File lib/pubg/telemetry.rb, line 28 def playerPosition @args.select {|data| data["_T"] == "LogPlayerPosition" } end
vehicleRide()
click to toggle source
# File lib/pubg/telemetry.rb, line 48 def vehicleRide @args.select {|data| data["_T"] == "LogVehicleRide" } end