Skip to content

Stuyk/altv-quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

alt:V - Quick Start

This repo will do everything for you; including download the latest server files.

Official Links

Installation

Install NodeJS Prior to Starting

  1. Open a command prompt in a folder.

  2. Run this:

git clone https://github.com/Stuyk/altv-quickstart
cd altv-quickstart
  1. Run the code block below this.

    5.1. This can be used whenever you need to update your server files.

    5.2. Run the code block below; wait for packages to install.

    5.2. Then follow the instructions on screen.

npm run update
  1. Bootup the Server

    3.1. This script downloads for Linux or Windows automatically.

    3.2. Use a screen on Linux to run the server in the background.

    3.3. Use a built in command prompt such as in VSCode to run the server.

    3.4. You may press Ctrl + C to stop the server at any time.

Linux:

./start.sh

Windows (CMD):

altv-server.exe

Windows (Powershell):

./altv-server.exe

Recommend VSCode Plugins

Useful Links

Other Useful Info

Adding Typings Naturally to the Project:

  1. Run the following where your package.json is.
npm i -D @altv/native-types
  1. Replace current imports with these special imports.

    2.1 For Server:

/// <reference types="@altv/types" />
import * as alt from 'alt-server'
2.2 For Client:
/// <reference types="@altv/types" />
import * as alt from 'alt-client'