Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed wrong name in event docs #316

Merged
merged 28 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ea1ea2c
Add LocalVehicle to LocalPlayer vehicle property (#287)
xxshady Nov 9, 2023
465ba21
feat(natives): Add new natives
xLuxy Dec 19, 2023
82e2431
Merge remote-tracking branch 'origin/new-natives'
xLuxy Dec 19, 2023
d475a9b
Merge branch 'dev'
xLuxy Dec 19, 2023
7860e16
Merge branch 'dev'
xLuxy Dec 20, 2023
841c8c1
Merge branch 'dev'
xLuxy Dec 20, 2023
e9646ef
Merge branch 'dev'
xLuxy Dec 20, 2023
f18883b
Merge branch 'dev'
xLuxy Dec 20, 2023
e5c0388
Merge branch 'dev'
xLuxy Dec 25, 2023
3dd93b7
Merge branch 'dev'
xLuxy Dec 28, 2023
63e77af
fix(client): move steeringAngle property to Vehicle class (#294)
xxshady Dec 29, 2023
6a30e27
feat(server): Add Vehicle.setBadge
xLuxy Dec 29, 2023
7472a35
Merge branch 'dev'
xLuxy Jan 2, 2024
3dd5be7
Merge branch 'dev'
xLuxy Jan 3, 2024
e5df04e
Merge branch 'dev'
xLuxy Jan 3, 2024
a7a77fa
Merge branch 'dev'
zziger Jan 7, 2024
65a0afa
Merge branch 'dev'
zziger Jan 12, 2024
a89a2d6
Merge branch 'dev'
xLuxy Jan 28, 2024
f1cfb52
Merge branch 'master' of https://github.com/altmp/altv-types
xLuxy Jan 28, 2024
d0748ff
Merge branch 'dev'
xLuxy Jan 28, 2024
a7b44a7
Merge branch 'dev'
xLuxy Feb 28, 2024
e7cf0b6
chore: add package.json to first resource article (#302)
xxshady Mar 14, 2024
c0b9904
chore(server): remove outdated inspector property from IServerConfig …
xxshady Mar 14, 2024
28c74ba
Merge branch 'dev'
xLuxy Apr 3, 2024
beeedc2
chore: update altv-pkg link (#311)
xxshady Apr 3, 2024
4f8118b
chore: improve getClosestEntities description (#310)
xxshady Apr 3, 2024
c31ed89
Merge branch 'dev'
xLuxy Apr 3, 2024
dadaee1
corrected mixup
Dav-Renz May 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/articles/create-your-first-resource.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,4 @@ Followed by setting up a whole server with basic fundamentals!

Keep in mind that...
- alt:V uses ES6 modules
- the server does not automatically update, you can use something like [altv-pkg](https://github.com/Stuyk/altv-pkg) (unofficial) to easily update server files
- the server does not automatically update, you can use something like [altv-pkg](https://github.com/altmp/altv-pkg) to easily update server files
2 changes: 1 addition & 1 deletion docs/articles/events/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ alt.on('playerConnect', player => {
The client may only emit data to the server-side with `emitServer` or `emitServerRaw`.
`emitServerRaw` is used for big data and is faster than `emitServer` and `emitServerRaw` only works, if the server is using javascript.

The server-side `onServer` event handlers will automatically receive the player that sent the event as the first argument.
The server-side `onClient` event handlers will automatically receive the player that sent the event as the first argument.

# [Client-side](#tab/tab2-0)
```js
Expand Down
4 changes: 0 additions & 4 deletions server/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,6 @@ declare module "alt-server" {
};

readonly "js-module"?: {
readonly inspector?: {
readonly host?: string;
readonly port?: number;
};
readonly "source-maps"?: boolean;
readonly "heap-profiler"?: boolean;
readonly profiler?: boolean;
Expand Down
Loading