This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

58 lines
941 B
C++
Raw Normal View History

2021-05-19 16:05:21 +02:00
#pragma once
namespace big
{
enum class CustomWeapon
2021-05-19 16:05:21 +02:00
{
NONE,
CAGE_GUN,
DELETE_GUN,
2021-05-20 18:19:01 +02:00
GRAVITY_GUN,
STEAL_VEHICLE_GUN,
2021-05-20 21:04:03 +02:00
REPAIR_GUN,
VEHICLE_GUN
2021-05-19 16:05:21 +02:00
};
enum class RemoteEvent
{
Bounty = -1906146218,
CeoBan = 1355230914,
CeoKick = -316948135,
CeoMoney = 1152266822,
ClearWantedLevel = 1187364773,
FakeDeposit = 153488394,
ForceMission = -1147284669,
GtaBanner = 1659915470,
PersonalVehicleDestroyed = 299217086,
RemoteOffradar = -397188359,
RotateCam = -1320260596,
SendToCutscene = 1889984715,
SendToIsland = -1479371259,
SoundSpam = 1537221257,
Spectate = -148441291,
Teleport = 1249026189,
TransactionError = -2041535807,
VehicleKick = -1005623606
};
2021-08-05 01:26:45 +02:00
enum class eSessionType
{
JOIN_PUBLIC,
NEW_PUBLIC,
CLOSED_CREW,
CREW,
CLOSED_FRIENDS = 6,
FIND_FRIEND = 9,
SOLO,
INVITE_ONLY,
JOIN_CREW,
LEAVE_ONLINE = -1
};
enum class SpeedoMeter
{
DISABLED,
KMH,
MPH
};
2021-05-19 16:05:21 +02:00
}