Skip to content

OnQueueUpdate

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnQueueUpdate( Connection c, int position )
{
    Puts( "OnQueueUpdate works!" );
}

Location

  • ConnectionQueue::SendQueueUpdate(Network.Connection c, int position)
csharp
private void SendQueueUpdate(Connection c, int position)
{
	if (Interface.CallHook("OnQueueUpdate", c, position) != null)
	{
		return;
	}
	NetWrite expr_1F = Net.sv.StartWrite();
	expr_1F.PacketID(Message.Type.QueueUpdate);
//---

Released under the MIT License.