Skip to content

CanBypassQueue

Usage

  • Return a bool value to override default behavior

Example Autogenerated

csharp
private bool? CanBypassQueue( Connection connection )
{
    Puts( "CanBypassQueue works!" );
    return null;
}

Location

  • ConnectionQueue::CanJumpQueue(Network.Connection connection)
csharp
private bool CanJumpQueue(Connection connection)
{
	object returnvar = Interface.CallHook("CanBypassQueue", connection);
	if (returnvar is bool)
	{
		return (bool)returnvar;
	}
	if (DeveloperList.Contains(connection.userid))
//---

Released under the MIT License.