Hey,
Im new to the RAGE-MP.
I started moving from GT-MP and have issue with events. PlayerConnected doesn't trigger also PlayerDisconnected tells me that i have wrong number of parameters dispite using sample code.
using GTANetworkAPI;
namespace RP
{
public class ConnectionHandler : Script
{
[ServerEvent(Event.PlayerConnected)]
public void OnPlayerConnect(Client player)
{
NAPI.Util.ConsoleOutput("Connected");
World.Players.Add(player, new Player(player));
}
[ServerEvent(Event.PlayerDisconnected)]
public void OnPlayerDisconnect(Client player, DisconnectionType type, string reason)
{
if(type == DisconnectionType.Left)
NAPI.Chat.SendChatMessageToAll("~b~" + player.Name + "~w~ left. " + reason);
World.Players.Remove(player);
}
}
}
I downloaded GTANetworkAPI version 3.6 as NuGet Package