44 lines
769 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 : int64_t
{
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
};
enum class SpeedoMeter
{
DISABLED,
KMH,
MPH
};
2021-05-19 16:05:21 +02:00
}