OnFeedbackReported
Usage
- No return behavior
Example Autogenerated
csharp
private void OnFeedbackReported( BasePlayer instance, string text, string text2, ReportType reportType )
{
Puts( "OnFeedbackReported works!" );
}
Location
- BasePlayer::OnFeedbackReport(BaseEntity/RPCMessage msg)
csharp
//---
Message = text2,
Subject = text
};
feedback.AppInfo.Image = image;
Facepunch.Feedback.ServerReport(ConVar.Server.reportsServerEndpoint, this.userID, ConVar.Server.reportsServerEndpointKey, feedback);
Interface.CallHook("OnFeedbackReported", this, text, text2, reportType);
}
}