altv_internal_core_shared 15.0.0-dev.39

An internal crate for alt:V module. Not intended for direct use.
Documentation
<div align="center">
<img width="70px" src="https://user-images.githubusercontent.com/54737754/232321923-66ba765e-33a4-449e-9e9b-2dc13ff8c176.svg"/> <img width="80px" src="https://user-images.githubusercontent.com/54737754/232321872-45100319-28a3-46e9-adf9-3dba5b8da9a8.png"/>
</div>
<br>

# Server-side alt:V API for Rust

[![crates.io](https://img.shields.io/crates/v/altv.svg)](https://crates.io/crates/altv)

```rust
altv::events::on_player_connect(|event| {
    let name = event.player.name()?;
    altv::log!("player with name: {name} connected!");
    Ok(())
});
```

New server-side [Rust](https://www.rust-lang.org) module for [alt:V](https://altv.mp) platform (WIP)

**Big** thanks to the [creator](https://github.com/justdimaa) of the [first Rust module](https://github.com/justdimaa/altv-rs), as their work helped me understand how to start my own module

## Docs


API documentation can be found [here](https://docs.rs/altv)

## How to use


Before start writing your server-side in Rust you need to [install LLVM](https://rust-lang.github.io/rust-bindgen/requirements.html#installing-clang)
> If you are on Windows, don't forget to set `LIBCLANG_PATH` as an environment variable

> If you have similar error: `src/alt_bridge.h:5:10: fatal error: 'memory' file not found` when installing or building altv_internal_sdk, try [this]https://stackoverflow.com/questions/26333823/clang-doesnt-see-basic-headers/75546125#75546125

[Video format of this tutorial](https://youtu.be/PRIJsRdjiGg) if you are more into video tutorials

1. Create new cargo package with `cargo new altv-resource --lib`

2. Configure cargo to compile your crate as `cdylib` in your `Cargo.toml`
```toml
[lib]
crate-type = ['cdylib']
```

3. After that you can install [`altv`]https://crates.io/crates/altv crate with: `cargo add altv`

4. Next step will be to add main function to your resource (`src/lib.rs`)
```rust
use altv::prelude::*; // Entity, WorldObject traits

#[altv::main] // This is required
fn main() -> impl altv::IntoVoidResult {
    altv::log!("~gl~hello world");
}
```

5. Now you can build your resource with `cargo build`

6. In `target/debug/` you should see the `.dll` or `.so` you just compiled (if you don't see it, make sure you set `lib.crate-type` to `["cdylib"]`, see step 2)

7. Create new alt:V resource, in `resources` directory of your server

8. Copy compiled `.dll` or `.so` to resource directory

9. Create [`resource.toml`]https://docs.altv.mp/articles/configs/resource.html with this content:
```toml
type = 'rs'
main = 'example.dll' # your compiled .dll or .so
```

10. Don't forget to add resource to [`server.toml`]https://docs.altv.mp/articles/configs/server.html

11. Now you can download rust-module `.dll` or `.so` from [latest release]https://github.com/xxshady/altv-rust/releases or with [`cargo-altvup`]https://github.com/xxshady/cargo-altvup

12. Copy it to `modules` directory of your server

13. Add `rust-module` to [`server.toml`]https://docs.altv.mp/articles/configs/server.html like that:
```toml
modules = ['rust-module']
```

14. Now if you have done everything correctly, you should see green "hello world" message in server console