TTTBodyCreditsLooted(ply, deadPly, rag, credits)

Called when a player loots credits off of a dead player's body.
Realm: Server
Added in: 2.1.3
Parameters:

TTTBodySearchButtons(ply, rag, buttons, searchRaw, detectiveSearchOnly)

Called when a player opens the body search dialog. Used to add new buttons to the dialog.
Realm: Client
Added in: 1.8.3
Parameters:

TTTBodySearchEquipment(search, eq)

Called when a player searches a body, passing the search info and the equipment found on the body.
Changed eq parameter to be a table of the body's owned equipment IDs instead of a bitmask.
NOTE: If an error happened while calling this hook, we will call it again and pass 0 for the eq parameter to at least allow the body search dialog to open.
Realm: Client
Added in: 1.0.0
Parameters:

TTTBlockPlayerFootstepSound(ply)

Called when a player is making a footstep. Used to determine if the player's footstep sound should be stopped.
Realm: Client and Server
Added in: 1.2.7
Parameters:

Return: Whether or not the given player's footstep sounds should be stopped (Defaults to false).

TTTC4Disarm(bomb, result, ply)

Modified to allow changing the defusal result via the new return value.
Realm: Server
Added in: 1.5.14
Parameters:

Return:

TTTCanIdentifyCorpse(ply, rag, wasTraitor)

Changed was_traitor parameter to be true for any member of the traitor team, rather than just the regular Traitor role.
Realm: Server
Added in: 1.0.5
Parameters:

Return: Whether or not the given player should be able to identify the given corpse. (Defaults to false)

TTTCanPlayerBeCured(ply)

Called when someone is attempting to use a cure on a player.
Realm: Server
Added in: 2.1.18
Parameters:

Return: Whether to allow using the cure on this player. (Defaults to false)

TTTCanCureableRoleSpawn()

Called to determine if a role can spawn that causes a state that can be cured.
Realm: Client and Server
Added in: 2.1.18

Return: true if a role can spawn that causes a state that can be cured. Otherwise do not return anything.

TTTCanUseTraitorVoice(ply)

Called when a player is attempting to use traitor chat, both speaking and listening. Used to change the default behavior.
Realm: Client and Server
Added in: 2.0.7
Parameters:

Return: Whether to allow this player to use traitor voice chat. (Defaults to checking whether the player is on the traitor team)

TTTChatPlayerName(ply, team_chat)

Called when a player is using chat. Used to override the name shown.
Realm: Client
Added in: 2.1.4
Parameters:

Return: The player name to show, if it should be overridden. Otherwise do not return anything.

TTTCupidShouldLoverSurvive(ply, lover)

Called before a player is killed because their lover (as set by Cupid's arrows) has been killed. Allows developers to prevent the player from being killed.
Realm: Server
Added in: 1.8.2
Parameters:

Return: If ply should not be killed, return true. Otherwise do not return anything.

TTTCurePlayer(ply)

Called when someone uses a cure on a player.
Realm: Server
Added in: 2.1.18
Parameters:

TTTDeathNotifyOverride(victim, inflictor, attacker, reason, killerName, role)

Called before the name and role of a player's killer is shown to the victim. Used to change the death message reason, killer name, and/or killer role.
Realm: Server
Added in: 1.5.14
Parameters:

Return:

TTTDetectiveLikePromoted(ply)

Called when a detective-like (deputy, impersonator, etc.) player is promoted.
Realm: Server
Added in: 2.0.1
Parameters:

TTTDrawHitMarker(ent, dmginfo)

Called when an entity is attacked by a player, before hitmarkers are drawn.
Realm: Server
Added in: 2.1.4
Parameters:

Return:

TTTEventFinishText(e)

Called before the event text for the "round finished" event is rendered in the end-of-round summary's Events tab.
Realm: Client
Added in: 1.2.7
Parameters:

Return: Text to show in events list at the end of the round

TTTEventFinishIconText(e, winString, roleString)

Called before the event icon for the "round finished" event is rendered in the end-of-round summary's Events tab. Used to change the mouseover text for the icon.
Realm: Client
Added in: 1.2.7
Parameters:

Return:

TTTEquipmentTabs(dsheet, dframe)

Allows creation of new tabs for the equipment (shop) menu.
Realm: Client
Added in: 1.0.0
Parameters:

Return: If true, the equipment window will show even if the player doesn't have any of the default tabs. (Added in 1.7.3)

TTTFakeCurePlayer(ply)

Called when someone uses a fake cure on a player.
Realm: Server
Added in: 2.1.18
Parameters:

TTTHUDInfoPaint(client, labelX, labelY, activeLabels)

Called after player information such as role, health, and ammo and equipment information such as radar cooldown and disguiser activation are drawn on the screen. Used to write additional persistent text on the screen for player reference.
Realm: Client
Added in: 1.3.1
Parameters:

TTTInformantDefaultScanStage(ply, oldRole, newRole)

Called when an Informant has scanned additional information from a target player.
Realm: Server
Added in: 1.9.6
Parameters:

Return: The default scan stage to use for this player. If you have no opinion (e.g. let other logic determine this) then don't return anything at all.

TTTInformantScanStageChanged(ply, tgt, stage)

Called when an Informant has scanned additional information from a target player.
Realm: Server
Added in: 1.6.16
Parameters:

TTTIsPlayerRespawning(ply)

Called to check whether a player is currently respawning.
Realm: Client and Server
Added in: 2.1.12
Parameters:

Return: true if the player is currently respawning, false if they are not. If you have no opinion (e.g. let other logic determine this) then don't return anything at all.

TTTKarmaGiveReward(ply, reward, victim)

Called before a player is rewarded with karma. Used to block a player's karma reward.
Realm: Server
Added in: 1.2.7
Parameters:

Return: Whether or not the given player should be prevented from being rewarded with karma (Defaults to false).

TTTKarmaShouldGivePenalty(attacker, victim)

Called before a player's karma effect is decided. Used to determine if a player should be penalized or rewarded.
Realm: Server
Added in: 1.2.7
Parameters:

Return: true if the attacker should be penalized or false if they should not. If you have no opinion (e.g. let other logic determine this) then don't return anything at all.

TTTMadScientistZombifyBegin(ply, tgt)

Called when a Mad Scientist begins zombifying a target.
Realm: Server
Added in: 1.6.16
Parameters:

TTTPaladinAuraHealed(ply, tgt, healed)

Called when a Paladin heals a target.
Realm: Server
Added in: 1.6.16
Parameters:

TTTParasiteRespawn(parasite, attacker)

Called when a Parasite respawns.
Realm: Server
Added in: 1.8.2
Parameters:

TTTPlayerAliveClientThink(client, ply)

Called for each player who is alive during the Think hook.
Realm: Client
Added in: 1.3.1
Parameters:

TTTPlayerAliveThink(ply)

Called for each player who is alive during the Tick hook.
Realm: Server
Added in: 1.2.7
Parameters:

TTTPlayerCanSendCredits(ply, credits, hasShop, canSend)

Called when a player opens the equipment window to determine whether the credits transfer tab should show.
Realm: Client
Added in: 2.1.14
Parameters:

Return: true if the player should be able to send credits. Don't return anything otherwise.

TTTPlayerCanSendCreditsTo(ply, target, canSend)

Called on the client when a player opens the equipment window to determine which other players are valid transfer targets.
Called on the server when a player attempts to transfer credits to another player to determine whether the target is valid.
Realm: Client and Server
Added in: 2.1.14
Parameters:

Return: true if the player should be able to send credits to the target. Don't return anything otherwise.

TTTPlayerCreditsChanged(ply, amount)

Called whenever a player's credits are added to or subtracted from.
Realm: Server
Added in: 1.9.7
Parameters:

TTTPlayerHealthChanged(ply, oldHealth, newHealth)

Called when a player's health changes.
Realm: Client and Server
Added in: 1.9.5
Parameters:

TTTPlayerRoleChanged(ply, oldRole, newRole)

Called after a player's role has changed.
Realm: Client and Server
Added in: 1.2.7
Parameters:

TTTPlayerRoleChangedByItem(ply, tgt, item)

Called after a player's role has been changed by a weapon or item.
Realm: Server
Added in: 1.6.16
Parameters:

TTTPlayerSpawnForRound(ply, deadOnly)

Called before a player is spawned for a round. Also used when reviving a player (via a defib, Zombie conversion, etc.).
Realm: Server
Added in: 1.2.7
Parameters:

TTTPlayerUsedHealthStation(ply, station, healed, should_reduce)

Called after a player uses a health station. Added should_reduce parameter which is not present in vanilla TTT.
Realm: Server
Added in: 1.0.0
Parameters:

TTTPrintResultMessage(type)

Called before the round win results message is printed to the top-right corner of the screen. Can be used to print a replacement message for custom win types that this would not normally handle.
Realm: Server
Added in: 1.0.14
Parameters:

Return: true if the default print messages should be skipped (Defaults to false).

TTTQuartermasterCrateOpened(ply, tgt, item_id)

Called when a player opens a crate from a Quartermaster.
Realm: Server
Added in: 1.9.6
Parameters:

TTTRadarPlayerRender(client, tgt, color, hidden)

Called before a target's radar ping is rendered, allowing the color and whether the ping should be shown to be changed.
Realm: Client
Added in: 1.2.3
Parameters:

Return:

TTTRadarRender(client)

Called after non-player radar points are rendered and before players are rendered. Used for rendering custom non-player radar points.
Realm: Client
Added in: 1.3.1
Parameters:

TTTRadioPlayerName(sender, target)

Called when a player is using the in-game quickchat radio. Used to override the name shown.
Realm: Client and Server
Added in: 2.1.9
Parameters:

Return: The player name to show, if it should be overridden. Otherwise do not return anything.

TTTRewardDetectiveTraitorDeathAmount(victim, attacker, amount)

Called before all detectives are awarded credits for a traitor being killed.
Realm: Server
Added in: 1.4.8
Parameters:

Return:

TTTRewardDetectiveTraitorDeath(ply, victim, attacker, amount)

Called before a player awarded credits for a traitor being killed.
Realm: Server
Added in: 1.4.8
Parameters:

Return: true to prevent the given player from being awarded credits

TTTRewardPlayerKilledAmount(victim, attacker, amount)

Called before a player is awarded credits for killing an opponent.
Realm: Server
Added in: 1.4.8
Parameters:

Return:

TTTRewardTraitorInnocentDeathAmount(victim, attacker, amount)

Called before all traitors are awarded credits for a non-traitor being killed.
Realm: Server
Added in: 1.4.8
Parameters:

Return:

TTTRewardTraitorInnocentDeath(ply, victim, attacker, amount)

Called before a player awarded credits for a non-traitor being killed.
Realm: Server
Added in: 1.4.8
Parameters:

Return: true to prevent the given player from being awarded credits

TTTRolePopupParams(client)

Called before a player's role start-of-round popup message is displayed, allowing the parameters to be added to.
Realm: Client
Added in: 1.2.7
Parameters:

Return:

TTTRolePopupRoleStringOverride(client, roleString)

Called before a player's role start-of-round popup message is displayed, allowing the target translation string to be changed.
Realm: Client
Added in: 1.5.11
Parameters:

Return:

TTTRolesLoaded()

Called after all roles and role modifications have been loaded.
Realm: Client
Added in: 1.5.3

TTTRoleSpawnsArtificially(role)

Called when checking if a role can be spawned artificially. (i.e. Spawned in a way other than naturally spawning when the role is enabled.)
Realm: Client and Server
Added in: 1.9.5
Parameters:

Return: true when the role could be spawned artificially. Don't return anything otherwise

TTTRoleRegistered(roleID)

Called after an external role has been registered.
Realm: Client
Added in: 1.5.3
Parameters:

TTTRoleWeaponsLoaded()

Called after the role weapons configuration is loaded.
Realm: Client and Server
Added in: 1.6.17

TTTRoleWeaponUpdated(role, weapon, include, exclude, noRandom, loadout)

Called after a role weapon configuration is changed for a specific role and weapon.
Realm: Client and Server
Added in: 1.6.17
Parameters:

TTTScoreboardPlayerName(ply, client, currentName)

Called before a player's row in the scoreboard (tab menu) is shown, allowing the name to be changed.
Realm: Client
Added in: 1.1.9
Parameters:

Return:

TTTScoreboardPlayerRole(ply, client, color, roleFileName)

Called before a player's row in the scoreboard (tab menu) is shown, allowing the colors and icon to be changed.
Realm: Client
Added in: 1.1.9
Parameters:

Return:

TTTScoringSecondaryWins(wintype, secondaryWins)

Called before each round summary screen is shown with the winning team. Used to add roles to the secondary win display (e.g. AND THE OLD MAN WINS).
Realm: Client
Added in: 1.4.1
Parameters:

TTTScoringSummaryRender(ply, roleFileName, groupingRole, roleColor, nameLabel, startingRole, finalRole)

Called before the round summary screen is shown. Used to modify the color, position, and icon for a player.
Realm: Client
Added in: 1.1.5
Parameters:

Return:

TTTScoringWinTitle(wintype, wintitles, title)

Called multiple times before the round end screen is shown with the winning team. For each tab of the round end screen that shows the winning team, this hook is first called with WIN_INNOCENT to get the default value and then called with the actual winning team. Return a new win title object to override what would normally be shown on the round end screen. This should be used by roles to customize what is shown on the round summary screen.
Realm: Client
Added in: 1.0.14
Parameters:

Return:

TTTScoringWinTitleOverride(wintype, wintitles, title)

Called multiple times before the round end screen is shown with the winning team. For each tab of the round end screen that shows the winning team this is called with the winning team. Return a new win title object to override what would normally be shown on the round end screen. This should be used by external addons to change the look of the round summary screen, not by roles to set their custom win titles. For a role's custom win title, use TTTScoringWinTitle instead.
Realm: Client
Added in: 1.7.3
Parameters:

Return:

TTTSelectRoles(choices, prevRoles)

Called before players are randomly assigned roles. If a player is assigned a role during this hook, they will not be randomly assigned one later.
Realm: Server
Added in: 1.0.0
Parameters:

TTTSelectRolesDetectiveOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned a detective role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSelectRolesIndependentOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned a independent role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSelectRolesInnocentOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned an innocent role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSelectRolesJesterOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned a jester role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSelectRolesMonsterOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned a monster role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSelectRolesTraitorOptions(roleTable, choices, choiceCount, traitors, traitorCount)

Called before players are assigned a traitor role, allowing the available roles and their weights (how many times they appear in the table) to be manipulated.
Realm: Server
Added in: 1.2.3
Parameters:

TTTSettingsConfigTabFields(sectionName, parentForm)

Called after each section of the help menu's Config tab has been created, allowing developers to add controls to that section.
Realm: Client
Added in: 1.7.3
Parameters:

TTTSettingsConfigTabSections(parentPanel)

Called after the Config tab of the help menu has been created, allowing developers to add sections to it.
Realm: Client
Added in: 1.7.3
Parameters:

TTTSettingsRolesTabSections(role, parentForm)

Called for each role, allowing developers to add a configuration section for it.
Realm: Client
Added in: 1.7.3
Parameters:

Return:

TTTShopRandomBought(client, item)

Called when a player buys a random item from the shop.
Realm: Client
Added in: 1.6.16
Parameters:

TTTShouldPlayerSmoke(ply, client, shouldSmoke, smokeColor, smokeParticle, smokeOffset)

Called when during a player's `Think`, allowing a player to emit smoke with different visual effects.
Realm: Client
Added in: 1.2.7
Parameters:

Return:

TTTShowSearchScreen(search)

Called when a body search screen would be shown.
Realm: Client
Added in: 2.1.10
Parameters:

TTTSmokeGrenadeExtinguish(ent_class, ent_pos)

Called when a smoke grenade extinguishes a fire entity.
Realm: Server
Added in: 1.6.16
Parameters:

TTTSpectatorHUDKeyPress(ply, tgt, powers)

Called when a player who is being shown a role-specific spectator HUD presses a button, allowing the hook to intercept that button press and perform specific logic if necessary.
Realm: Server
Added in: 1.3.1
Parameters:

Return:

TTTSpectatorShowHUD(client, tgt)

Called when a player should be shown a role-specific spectator HUD, allowing that role's logic to render the HUD as needed.
Realm: Client
Added in: 1.3.1
Parameters:

TTTSpeedMultiplier(ply, mults, sprinting)

Called when determining what speed the player should be moving at.
NOTE: This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Realm: Client and Server
Added in: 1.0.0
Parameters:

TTTSprintKey(ply)

Called when determining if a player is sprinting. Allows overriding of which directional key needs to be pressed for sprinting to start.
NOTE: This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Realm: Client and Server
Added in: 1.0.0 on Client and 1.8.8 on Server
Parameters:

Return: The IN_* enum value representing the key that must be pressed in addition to IN_SPEED to start sprinting. If none provided, default of IN_FORWARD will be used.

TTTSprintStaminaPost(ply, stamina, sprintTimer, consumption)

Called after a player's sprint stamina is reduced. Used to adjust the player's new stamina amount.
NOTE: This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Realm: Client and Server
Added in: 1.0.2 on Client and 1.8.8 on Server
Parameters:

Return: The stamina value to assign to the player. If none is provided, the player's stamina will not be changed.

TTTSprintStaminaRecovery(ply, recovery)

Called before a player's sprint stamina is recovered. Used to adjust how fast the player's stamina will recover.
NOTE: This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Realm: Client and Server
Added in: 1.3.6 on Client and 1.8.8 on Server
Parameters:

Return: The stamina recovery rate to assign to the player. If none is provided, the player's default stamina recovery rate will be used.

TTTSprintStateChange(ply, sprinting, wasSprinting)

Called when a player starts or stops sprinting.
NOTE: This represents the change in player speed, not the change in the Sprinting player variable.
NOTE: This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Realm: Client and Server
Added in: 1.8.8
Parameters:

TTTStopPlayerRespawning(ply)

Called when something has requested that a player stop respawning due to a role feature.
Realm: Server
Added in: 2.1.12

TTTSyncEventIDs()

Called when the server is syncing generated event IDs to the client.
Realm: Client
Added in: 1.4.6

TTTSyncGlobals()

Called when the server is syncing convars to global variables for client access.
Realm: Server
Added in: 1.2.7

TTTSyncWinIDs()

Called when the server is syncing generated win IDs to the client.
Realm: Client
Added in: 1.4.6

TTTTargetIDPlayerBlockIcon(ply, client)

Called before a player's overhead icon is shown, allowing you to block it.
Realm: Client
Added in: 1.3.5
Parameters:

Return: true to stop this information from being rendered

TTTTargetIDPlayerBlockInfo(ply, client)

Called before a player's target information (name, health, hint text, karma, and ring) are shown, allowing you to block it.
Realm: Client
Added in: 1.3.5
Parameters:

Return: true to stop this information from being rendered

TTTTargetIDPlayerHealth(ply, client, text, clr)

Called before a player's heath status (shown when you look at a player) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTargetIDEntityHintLabel(ent, client, label, clr)

Called before an entity's hint label (shown when you look at an entity) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTargetIDPlayerHintText(ent, client, text, clr)

Called before an entity's hint text (shown when you look at an entity) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTargetIDPlayerKarma(ply, client, text, clr)

Called before a player's karma status text (shown when you look at a player) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTargetIDPlayerName(ply, client, text, clr)

Called before a player's name (shown when you look at a player) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTargetIDPlayerRing(ent, client, ringVisible)

Called before an entity's Target ID ring (shown when you look at an entity) is rendered.
Realm: Client
Added in: 1.2.3
Parameters:

Return:

TTTTargetIDPlayerRoleIcon(ply, client, role, noZ, colorRole, hideBeggar, showJester, hideBodysnatcher)

Called before player Target ID icon (over their head) is rendered allowing changing the icon and color shown.
Realm: Client
Added in: 1.1.9
Parameters:

Return:

TTTTargetIDPlayerTargetIcon(ply, client, showJester)

Called before player Target ID icon (over their head) is rendered allowing adding a secondary icon.
Realm: Client
Added in: 1.9.4
Parameters:

Return:

TTTTargetIDPlayerText(ent, client, text, clr, secondaryText)

Called before player Target ID text (shown when you look at a player) is rendered.
Realm: Client
Added in: 1.1.9
Parameters:

Return:

TTTTargetIDRagdollName(ent, client, text, clr)

Called before a ragdoll's name (shown when you look at a ragdoll) is rendered.
Realm: Client
Added in: 1.2.5
Parameters:

Return:

TTTTeamChatTargets(sender, msg, targets, from_chat)

Called before a team chat message is sent. Used to modify the targets of the team message.
Realm: Server
Added in: 2.0.7
Parameters:

Return: Whether or not this team chat message should be sent (Defaults to true).

TTTTeamVoiceChatTargets(speaker, targets)

Called before a team voice state message is sent. Used to modify the targets of the team voice state message.
Realm: Server
Added in: 2.0.7
Parameters:

Return: Whether or not this team voice state message should be sent (Defaults to true).

TTTTurncoatTeamChanged(ply, traitor)

Called when a Turncoat's team is changed Realm: Server
Added in: 1.6.16
Parameters:

TTTTutorialRoleEnabled(role)

Called before a role's tutorial page is rendered. This can be used to allow a page to be shown when it normally would not be because the role is disabled. Useful for situations like showing the Zombie tutorial page when the Mad Scientist is enabled (because the Mad Scientist creates Zombies).
Realm: Client
Added in: 1.2.7
Parameters:

Return: true to show this page when it normally would not be

TTTTutorialRolePage(role, parentPanel, titleLabel, roleIcon)

Called before a role's tutorial page is rendered. This can be used to render a completely custom page with information about a role.
Realm: Client
Added in: 1.2.7
Parameters:

Return: true to tell the tutorial page to use the content set in this hook rather than calling the TTTTutorialRoleText hook

TTTTutorialRolePageExtra(role, parentPanel, titleLabel, roleIcon)

Called after a role's tutorial page is rendered. This can be used to provide additional data to show for a role.
Realm: Client
Added in: 1.5.3
Parameters:

TTTTutorialRoleText(role, titleLabel, roleIcon)

Called before a role's tutorial page is rendered. This can be used to provide the text to show for a role.
Realm: Client
Added in: 1.2.7
Parameters:

Return: The string value to show on the tutorial page for this role. Can be HTML and will be rendered within a <div>

TTTTutorialRoleTextExtra(role, titleLabel, roleIcon, htmlData)

Called before a role's tutorial page is rendered but after TTTTutorialRoleText is called. This can be used to provide additional text to show for a role.
Realm: Client
Added in: 1.5.3
Parameters:

Return: The full string value to show on the tutorial page for this role. Should not include the closing </div> tag as this is appended automatically.

TTTUpdateRoleState()

Called after globals are synced but but before role colors and strings are set. Can be used to update role states (team membership) and role weapon (buyable, loadout, etc.) states based on configurations.
Realm: Client and Server
Added in: 1.2.7

TTTVampireBodyEaten(ply, ent, living, healed)

Called after a Vampire eats a body.
Realm: Server
Added in: 1.6.16
Parameters:

TTTVampireInvisibilityChange(ply, invisible)

Called when a Vampire starts or ends their invisibility.
Realm: Server
Added in: 1.6.16
Parameters:

TTTWinCheckBlocks(winBlocks)

Called after the TTTCheckForWins has already been called, allowing for an addon to block a win. Used for roles like the Clown and the Drunk to have them activate when the round would normally end the first time.
Realm: Server
Added in: 1.3.1
Parameters:

TTTWinCheckComplete(win)

Called after a win condition has been set and right before the round eds. Used for roles like the Old Man that perform some logic before the end of the round without changing the outcome.
Realm: Server
Added in: 1.3.1
Parameters: