Arcana / node-dota2

A node-steam plugin for Dota 2.
MIT License
546 stars 191 forks source link

match_detail response #653

Closed lintangtimur closed 5 years ago

lintangtimur commented 5 years ago

hello, can someone explain to me what is this mean? like party_id have low, high, unsigned, damage_type, match_id low, high, unsigned, replay_salt, custom_game_id low, high, unsigned?

devilesk commented 5 years ago

party_id, match_id, and custom_game_id are 64 bit unsigned integers. They're too big for javascript's number type, so long.js is used to represent them.

Crazy-Duck commented 5 years ago

See also this section in the README