From c8f82bfefa476e723d3f18ddd59a9f9e3e2e5d7d Mon Sep 17 00:00:00 2001 From: Just Fede <107007836+Fede5432@users.noreply.github.com> Date: Sat, 31 Aug 2024 20:07:28 -0300 Subject: [PATCH] Create es/OnNPCExitVehicle.md (#1050) --- .../scripting/callbacks/OnNPCExitVehicle.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/translations/es/scripting/callbacks/OnNPCExitVehicle.md diff --git a/docs/translations/es/scripting/callbacks/OnNPCExitVehicle.md b/docs/translations/es/scripting/callbacks/OnNPCExitVehicle.md new file mode 100644 index 000000000..4e869f748 --- /dev/null +++ b/docs/translations/es/scripting/callbacks/OnNPCExitVehicle.md @@ -0,0 +1,26 @@ +--- +title: OnNPCExitVehicle +description: Este callback es llamado cuando un NPC deja (o sale de) un vehículo. +tags: ["npc"] +--- + +## Descripción + +Este callback es llamado cuando un NPC deja (o sale de) un vehículo. + + +## Ejemplos + +```c +public OnNPCExitVehicle() +{ + print("El NPC salió (o dejó) el vehículo"); + return 1; +} +``` + +## Callbacks relacionados + +Los siguientes callbacks pueden ser útiles, ya que estan relacionados con OnNPCExitVehicle de alguna forma u otra. + +- [OnNPCEnterVehicle](OnNPCEnterVehicle): Este callback es llamado cuando un NPC entra a un vehículo.