GettingStarted: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:


== GTA III, VC, SA, and IV (Custom Modes/Scripted) ==
== GTA III, VC, SA, and IV (Custom Modes/Scripted) ==
There are some example scripts [https://github.com/VortrexFTW/v-essentials here]. At the very minimum, you'll need to fade in the camera using [[gta.fadeCamera|gta.fadeCamera]] in a logical event such as in the [[OnPlayerJoined|onPlayerJoined]] event. The default resource provided with the server, called "freeroam", includes spawning the player and fading the camera, but is designed for GTA 3 only.  
There are some example scripts [https://github.com/VortrexFTW/v-essentials here]. If you're making your own scripts, at the very minimum you'll need to fade in the camera using [[gta.fadeCamera|gta.fadeCamera]] in a logical event such as in the [[OnPlayerJoined|onPlayerJoined]] event. The default resource provided with the server called "freeroam", includes spawning the player and fading the camera, but is designed for GTA 3 only.  


== Manual ==
== Manual ==

Revision as of 05:14, 5 December 2025

If you're only wanting to play, this guide is not for you. This guide is for creating a server

General Stages

- Download the server files on the Downloads page.
- Unzip/extract the server files to an empty folder.
- Change settings in server.xml (available settings)
- Run the server executable. For Windows, this will be Server.exe. For Linux, there are several options to do this, see the linux server manual page.

GTA IV (Rockstar Modes)

First, remove the freeroam resource that comes with the server, by deleting the freeroam folder in resources. Then remove the <resource src="freeroam" /> line in server config. The server should launch normally now, and connecting will place you into a generic rendezvous lobby, which uses party mode. You and other players who connect can use the phone in-game to start and join sessions.

GTA III, VC, SA, and IV (Custom Modes/Scripted)

There are some example scripts here. If you're making your own scripts, at the very minimum you'll need to fade in the camera using gta.fadeCamera in a logical event such as in the onPlayerJoined event. The default resource provided with the server called "freeroam", includes spawning the player and fading the camera, but is designed for GTA 3 only.

Manual

Check the Server Manual page.

Resources

Check the resources page for information on how to use resources.