Hello everyone, I would like to know if someone would explain to me how to make a launcher fivem client side.
Let me explain.
in a way it would be useful for the player to connect directly without entering an ip address to connect to the server.
this can also be used to load client-side mods.
and many other applications …
on the other hand I do not know how to proceed to create one.
give me just a few tracks to point me in the right direction.
In the meantime I intend to share a customer launcher with the community.
The launcher is up to you to create, no help could be given there. to join a server, use fivem://. The application part you want to build is fully up to you.
have a wiki that explains how the command works: fivem: //
because the command as it does not explain to me at all how it works.
what are the arguments that must be made
i tried the code in c# and dosnt connect.
here is the code
public partial class Form1 : Form
{
public string Ip { get; set; }
public int Port { get; set; }
public Form1()
{
InitializeComponent();
InitializeComponent();
Ip = "IP";
Port = 30120;
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void rectangleShape1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("fivem://{Ip}:{Port}");
MessageBox.Show("fivem://{Ip}:{Port}");
}