Skip to content

Commit

Permalink
Create es/OnNPCExitVehicle.md (#1050)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fede5432 authored Aug 31, 2024
1 parent 09d32d9 commit c8f82bf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/translations/es/scripting/callbacks/OnNPCExitVehicle.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit c8f82bf

Please sign in to comment.