Queue (4)

All currently available hooks that are found in Carbon. Most hooks would be ones compatible with Oxide, although there are Carbon-only ones as well.

  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ConnectionQueue.RemoveConnection of Assembly-CSharp.dll.

Example
object OnConnectionDequeue()
{
    Puts("OnConnectionDequeue was called!");
    return (object) null;
}
  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ConnectionQueue.Join of Assembly-CSharp.dll.

Example
object OnConnectionQueue()
{
    Puts("OnConnectionQueue was called!");
    return (object) null;
}
  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ConnectionQueue.Cycle of Assembly-CSharp.dll.

Example
object OnQueueCycle()
{
    Puts("OnQueueCycle was called!");
    return (object) null;
}
  • Returning a non-null value cancels default behavior.

  • This hook is compatible within Carbon and Oxide.

  • Patches ConnectionQueue.SendMessage of Assembly-CSharp.dll.

Example
object OnQueueMessage()
{
    Puts("OnQueueMessage was called!");
    return (object) null;
}

Last updated