Intro:
Hello there!
I am writing Advanced Logger Plugin for tf2, that logs interesting ingame events into separate txt file.
I've already got much help here
Context:
I was programming object_deflected event lately.
https://wiki.alliedmods.net/Team_For...ject_deflected
My goal is to log information what was deflected. Was it rocket, pipebomb, medics arrow etc.
There is object_entindex in there. I was trying to figure out how to get information about what was reflected. The only thing that came up on my mind was something like this:
PHP Code:
GetEntProp(index, Prop_Send, "isRocket")
But I can't find anywhere any list of properities that can be used to determine it.
Question:
Where can I find list of all properties that can be reached through GetEntProp?
Is there a better way to achieve my goal?