Skip to content

Commit d83ac48

Browse files
authored
Merge pull request #1182 from NexiusTailer/master
Fix links for OnActorStream(In/Out), correct mistakes
2 parents 677c509 + 9ec806d commit d83ac48

File tree

22 files changed

+38
-38
lines changed

22 files changed

+38
-38
lines changed

frontend/docs/scripting/callbacks/OnActorStreamIn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: OnActorStreamIn
33
sidebar_label: OnActorStreamIn
4-
description: This callback is called when an actor is streamed in by a player's client.
4+
description: This callback is called when an actor streams in by a player's client.
55
tags: ["actor"]
66
---
77

88
<VersionWarn name='callback' version='SA-MP 0.3.7' />
99

1010
## Description
1111

12-
This callback is called when an actor is streamed in by a player's client.
12+
This callback is called when an actor streams in by a player's client.
1313

1414
| Name | Description |
1515
| ----------- | ------------------------------------------------------------- |
@@ -40,4 +40,4 @@ public OnActorStreamIn(actorid, forplayerid)
4040
4141
The following callbacks might be useful, as they're related to this callback in one way or another.
4242
43-
- [OnActorStreamOut](OnActorStreamOut): This callback is called when an actor is streamed out by a player's client.
43+
- [OnActorStreamOut](OnActorStreamOut): This callback is called when an actor streams out by a player's client.

frontend/docs/scripting/callbacks/OnActorStreamOut.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: OnActorStreamOut
33
sidebar_label: OnActorStreamOut
4-
description: This callback is called when an actor is streamed out by a player's client.
4+
description: This callback is called when an actor streams out by a player's client.
55
tags: ["actor"]
66
---
77

88
<VersionWarn name='callback' version='SA-MP 0.3.7' />
99

1010
## Description
1111

12-
This callback is called when an actor is streamed out by a player's client.
12+
This callback is called when an actor streams out by a player's client.
1313

1414
| Name | Description |
1515
| ----------- | -------------------------------------------------------------- |
@@ -40,4 +40,4 @@ public OnActorStreamOut(actorid, forplayerid)
4040
4141
The following callbacks might be useful, as they're related to this callback in one way or another.
4242
43-
- [OnActorStreamIn](OnActorStreamIn): This callback is called when an actor is streamed in by a player's client.
43+
- [OnActorStreamIn](OnActorStreamIn): This callback is called when an actor streams in by a player's client.

frontend/docs/scripting/callbacks/OnPlayerGiveDamageActor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ This function does not get called if the actor is set invulnerable (WHICH IS BY
5757
5858
The following callbacks might be useful, as they're related to this callback in one way or another.
5959
60-
- [OnActorStreamOut](OnActorStreamOut): This callback is called when an actor is streamed out by a player's client.
61-
- [OnActorStreamIn](OnActorStreamOut): This callback is called when an actor is streamed in by a player's client.
60+
- [OnActorStreamOut](OnActorStreamOut): This callback is called when an actor streams out by a player's client.
61+
- [OnActorStreamIn](OnActorStreamOut): This callback is called when an actor streams in by a player's client.
6262
6363
## Related Functions
6464

frontend/docs/scripting/callbacks/OnPlayerStreamIn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ public OnPlayerStreamIn(playerid, forplayerid)
3939
The following callbacks might be useful, as they're related to this callback in one way or another.
4040
4141
- [OnPlayerStreamOut](OnPlayerStreamOut): This callback is called when a player streams out for another player.
42-
- [OnActorStreamIn](OnPlayerStreamOut): This callback is called when an actor is streamed in by a player.
42+
- [OnActorStreamIn](OnActorStreamIn): This callback is called when an actor streams in by a player.
4343
- [OnVehicleStreamIn](OnVehicleStreamIn): This callback is called when a vehicle streams in for a player.

frontend/docs/scripting/callbacks/OnPlayerStreamOut.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: OnPlayerStreamOut
33
sidebar_label: OnPlayerStreamOut
4-
description: This callback is called when a player is streamed out from some other player's client.
4+
description: This callback is called when a player streams out from some other player's client.
55
tags: ["player"]
66
---
77

88
## Description
99

10-
This callback is called when a player is streamed out from some other player's client.
10+
This callback is called when a player streams out from some other player's client.
1111

1212
| Name | Description |
1313
| ----------- | ----------------------------------------------- |
@@ -45,5 +45,5 @@ OnPlayerStreamOut is not called for both players when a player disconnects
4545
The following callbacks might be useful, as they're related to this callback in one way or another.
4646
4747
- [OnPlayerStreamIn](OnPlayerStreamIn): This callback is called when a player streams in for another player.
48-
- [OnActorStreamIn](OnPlayerStreamOut): This callback is called when an actor is streamed in by a player.
49-
- [OnVehicleStreamIn](OnPlayerStreamOut): This callback is called when a vehicle streams in for a player.
48+
- [OnActorStreamOut](OnActorStreamOut): This callback is called when an actor streams out by a player.
49+
- [OnVehicleStreamOut](OnVehicleStreamOut): This callback is called when a vehicle streams out for a player.

frontend/docs/scripting/callbacks/OnVehicleStreamOut.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: OnVehicleStreamOut
33
sidebar_label: OnVehicleStreamOut
4-
description: This callback is called when a vehicle is streamed out for a player's client (it's so far away that they can't see it).
4+
description: This callback is called when a vehicle streams out for a player's client (it's so far away that they can't see it).
55
tags: ["vehicle"]
66
---
77

88
## Description
99

10-
This callback is called when a vehicle is streamed out for a player's client (it's so far away that they can't see it).
10+
This callback is called when a vehicle streams out for a player's client (it's so far away that they can't see it).
1111

1212
| Name | Description |
1313
| ----------- | ------------------------------------------------------------ |

frontend/docs/scripting/functions/CreateActor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ Actors are designed to just stand somewhere, for example cashiers and bartenders
8686

8787
## Related Callbacks
8888

89-
- [OnActorStreamIn](../callbacks/OnActorStreamIn): Called when an actor is streamed in by a player.
90-
- [OnActorStreamOut](../callbacks/OnActorStreamOut): Called when an actor is streamed out by a player.
89+
- [OnActorStreamIn](../callbacks/OnActorStreamIn): Called when an actor streams in by a player.
90+
- [OnActorStreamOut](../callbacks/OnActorStreamOut): Called when an actor streams out by a player.
9191
- [OnPlayerGiveDamageActor](../callbacks/OnPlayerGiveDamageActor): This callback is called when a player gives damage to an actor.

frontend/i18n/ar/docusaurus-plugin-content-docs/current/scripting/callbacks/OnActorStreamIn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: OnActorStreamIn
33
sidebar_label: OnActorStreamIn
4-
description: This callback is called when an actor is streamed in by a player's client.
4+
description: This callback is called when an actor streams in by a player's client.
55
tags: []
66
---
77

frontend/i18n/fa/docusaurus-plugin-content-docs/current/scripting/callbacks/OnPlayerStreamIn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ public OnPlayerStreamIn(playerid, forplayerid)
3939
کالبک‌های زیر ممکن است مفید باشند، زیرا به نوعی با این کالبک مرتبط هستند.
4040
4141
- [OnPlayerStreamOut](OnPlayerStreamOut): این کالبک زمانی فراخوانده می‌شود که بازیکن برای بازیکن دیگری stream out شود.
42-
- [OnActorStreamIn](OnPlayerStreamOut): این کالبک زمانی فراخوانده می‌شود که اکتور توسط بازیکن stream in شود.
42+
- [OnActorStreamIn](OnActorStreamIn): این کالبک زمانی فراخوانده می‌شود که اکتور توسط بازیکن stream in شود.
4343
- [OnVehicleStreamIn](OnVehicleStreamIn): این کالبک زمانی فراخوانده می‌شود که وسیله نقلیه برای بازیکن stream in شود.

frontend/i18n/fa/docusaurus-plugin-content-docs/current/scripting/callbacks/OnPlayerStreamOut.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ OnPlayerStreamOut هنگام قطع اتصال بازیکن برای هر دو
4545
کالبک‌های زیر ممکن است مفید باشند، زیرا به نوعی با این کالبک مرتبط هستند.
4646
4747
- [OnPlayerStreamIn](OnPlayerStreamIn): این کالبک زمانی فراخوانده می‌شود که بازیکن برای بازیکن دیگری stream in شود.
48-
- [OnActorStreamIn](OnPlayerStreamOut): این کالبک زمانی فراخوانده می‌شود که اکتور توسط بازیکن stream in شود.
49-
- [OnVehicleStreamIn](OnPlayerStreamOut): این کالبک زمانی فراخوانده می‌شود که وسیله نقلیه برای بازیکن stream in شود.
48+
- [OnActorStreamIn](OnActorStreamIn): این کالبک زمانی فراخوانده می‌شود که اکتور توسط بازیکن stream in شود.
49+
- [OnVehicleStreamIn](OnVehicleStreamIn): این کالبک زمانی فراخوانده می‌شود که وسیله نقلیه برای بازیکن stream in شود.

0 commit comments

Comments
 (0)