Releases: spc-samp/samp-injector
Releases · spc-samp/samp-injector
SA-MP Injector Executable
SA-MP Injector is a robust and versatile executable designed to automate the launch of GTA: San Andreas with the multiplayer modules SA-MP and OMP.
While it can be used directly via the command line, samp-injector.exe
is especially designed to be embedded in custom launchers and other applications. It enables you to quickly configure your game to connect to any server by simply providing the injection mode (samp
or omp
), game directory, nickname, server IP and port, and optionally, a password.
Highlights:
- Dynamic Injection: Supports injection of
samp.dll
(for SA-MP) or bothsamp.dll
andomp-client.dll
(for OMP). - Custom Parameters: Connect to specific servers with defined nickname, IP, port, and password.
- Command-Line Interface: Perfect for use in scripts, custom launchers, or directly from the terminal.
- Built with the C++ Library: The executable is a practical application of the SA-MP Injector C++ library, ensuring performance and reliability.
How to Use:
Samp-injector.exe
is a command-line tool. Below are basic examples:
SA-MP Mode:
samp-injector.exe "samp" "C:\Games\GTA San Andreas" "Name" "127.0.0.1" "7777" "password (optional)"
OMP Mode:
samp-injector.exe "omp" "C:\Games\GTA San Andreas" "Name" "127.0.0.1" "7777" "password (optional)"
Parameters:
<mode>
: Eithersamp
oromp
.<game_directory>
: Full path to your GTA:SA directory (e.g.,"C:\Games\GTA San Andreas"
).<nickname>
: Your in-game username.<ip>
: The server’s IP address or domain name.<port>
: The server’s port (e.g.,7777
).<password (optional)>
: Server password, if required.
For more details and advanced use cases (including integration with other applications), please refer to the full project documentation on GitHub.