Skip to content

Commit

Permalink
Create OnNPCExitVehicle.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Fede5432 authored Aug 29, 2024
1 parent b80742c commit 7454b49
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 @@
---
título: OnNPCExitVehicle
descripción: 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ícuclo.

0 comments on commit 7454b49

Please sign in to comment.