Add ban type constants

This commit is contained in:
Vortrex
2020-12-23 23:02:01 -06:00
parent 6e4a6d6b91
commit 4d3a7c7602

View File

@@ -81,4 +81,11 @@ const AG_JOBWORKTYPE_SERVICE = 3; // Services to other players and NPCs. Taxi ri
const AG_VEHSEAT_DRIVER = 0;
const AG_VEHSEAT_FRONTPASSENGER = 1;
const AG_VEHSEAT_REARLEFTPASSENGER = 2;
const AG_VEHSEAT_REARRIGHTPASSENGER = 3;
const AG_VEHSEAT_REARRIGHTPASSENGER = 3;
// Ban Types
const AG_BANTYPE_NONE = 0;
const AG_BANTYPE_ACCOUNT = 1;
const AG_BANTYPE_SUBACCOUNT = 2;
const AG_BANTYPE_IPADDRESS = 3;
const AG_BANTYPE_SUBNET = 4;