Valorant: Behaviour of kill-event when a double kill happens

In Valorant we have a kill-event looking like this:

{“events”:[{“name”:“kill”,“data”:X}]}

If I start a match and I get a double kill, would I get two kill-events, each incrementing the data value by 1? As such:

{“events”:[{“name”:“kill”,“data”:1}]}
{“events”:[{“name”:“kill”,“data”:2}]}

Or would I get one kill-event, incrementing the data value by two? As such:

{“events”:[{“name”:“kill”,“data”:2}]}

Hey sara,

In the event of a double-kill you will get 2 events one after the other like so:
{“events”:[{“name”:“kill”,“data”:1}]}
{“events”:[{“name”:“kill”,“data”:2}]}

There is a very rare case of if you will 2 people at the exact same time and not one after the other in which this might cause a bug in the count. This specifically is slightly difficult to reproduce so following this bug might take us a little bit of time, but in any case that’s an edge-case.

Closing the ticket. Please let me know if you want to reopen it or there is any other issue.

Thanks.