GetDotaStats / stat-collection

Library for setting up stat collection for dota2 mods
http://getdotastats.com/
GNU General Public License v2.0
11 stars 8 forks source link

[SCHEMA UPDATE] Dota IMBA #116

Closed EarthSalamander42 closed 5 years ago

EarthSalamander42 commented 5 years ago

I'd like to add additional game values recorded, my whole schema + setup is working so i'm not posting again every required informations to submit a schema.

game.gm: string, game.gv: string, game.ev: string.

function BuildGameArray() local game = {}

-- Add game values here as game.someValue = GetSomeGameValue()
game.gl = GetGameTimeAverage() -- Game length, from the horn sound (string)
game.wt = GAME_WINNER_TEAM -- Winning team
game.gm = GetCustomGameVote() -- Gamemode voted
game.gv = GetCustomGoldVote() -- Gold voted
game.ev = GetCustomExpVote() -- Experience voted

return game

end

jimmydorry commented 5 years ago

Done. https://getdotastats.com/#s2__mod_schema?mid=471