03.10.2018, 15:53
sampcmd-go
This tool allows you to start SA-MP via the command line, alternatively it can be used as a go library.
GitHub Repository
https://github.com/Bios-Marcel/sampcmd-go
Commandline Usage
Golang usage
For all available functions, check the documentation at https://godoc.org/github.com/Bios-Ma...cmd-go/sampcmd.
Available parameters
Big thanks to BigETI for helping me on this one!
This tool allows you to start SA-MP via the command line, alternatively it can be used as a go library.
GitHub Repository
https://github.com/Bios-Marcel/sampcmd-go
Commandline Usage
Code:
sampcmd-go.exe -h 127.0.0.1 -p 7777 -n Name
Code:
returnValue := sampcmd.LaunchSAMP("-h 127.0.0.1 -p 7777 -n Name") if(returnValue != 0) { fmt.Printf("An error occured. The application returned %d", returnValue) }
Available parameters
- -d
> Enables the debugging mode. - -c <RCON password>
> Passes an RCON password to directly login as RCON administrator. - -h <IP address / hostname>
> Specifies the server that you want to join. - -p <port>
> Specified the servers port. - -n <name>
> Specifies the ingame username. - -z <server password>
> Specifies a password necessary to join the server.
Big thanks to BigETI for helping me on this one!