added aduty system + added ChatService.BroadcastDutyAdmin + fixes in report system + added paaqos busdriver job
This commit is contained in:
22
ReallifeGamemode.Server/Job/BusDriver/Events.cs
Normal file
22
ReallifeGamemode.Server/Job/BusDriver/Events.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using GTANetworkAPI;
|
||||
|
||||
namespace ReallifeGamemode.Server.Job.BusDriver
|
||||
{
|
||||
public class Events : Script
|
||||
{
|
||||
// Client Events
|
||||
|
||||
[RemoteEvent("marker_completed")]
|
||||
public void RemoteEvent_MarkerCompleted(Client client)
|
||||
{
|
||||
if (!client.HasData("Job"))
|
||||
return;
|
||||
|
||||
JobInfo jobInfo = client.GetData("Job");
|
||||
jobInfo.CheckObjective(client);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user