Advertisement
BitEmE

GTA V - NETWORK DATA

Jun 22nd, 2014
616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. /*****************************************************************************\
  2.  
  3. Copyright (C) 2013-2014 - bitE mE - <bitE0mE at outlook dot com>
  4.  
  5. This software is provided 'as-is', without any express or implied
  6. warranty.  In no event will the authors be held liable for any damages
  7. arising from the use of this software.
  8.  
  9. Permission is granted to anyone to use this software for any purpose,
  10. including commercial applications, and to alter it and redistribute it
  11. freely, subject to the following restrictions:
  12.  
  13. 1. The origin of this software must not be misrepresented; you must not
  14. claim that you wrote the original software. If you use this software
  15. in a product, an acknowledgment in the product documentation would be
  16. appreciated but is not required.
  17. 2. Altered source versions must be plainly marked as such, and must not be
  18. misrepresented as being the original software.
  19. 3. This notice may not be removed or altered from any source distribution.
  20.  
  21. \*****************************************************************************/
  22.  
  23. enum eVNetworkOptions {
  24.     OPT_ARBITRATED,
  25.     OPT_TIME,
  26.     OPT_KICK,
  27.     OPT_TEAM_NUMBER,
  28.     OPT_LOCKON,
  29.     OPT_FF
  30. };
  31.  
  32. enum eVNetworkGameModes {
  33.     GAMEMODE_COPS_AND_CROOKS,   // CnC
  34.     GAMEMODE_FREEMODE,          // FREEMODE
  35.     GAMEMODE_COOP,              // COOP
  36.     GAMEMODE_DEATHMATCH,        // DM
  37.     GAMEMODE_T_DEATHMATCH,      // TDM
  38.     GAMEMODE_RACES,             // RACES
  39.     GAMEMODE_MPTESTBED,         // MPTestBed
  40.     GAMEMODE_MCLAUNCHER,        // MISSION CREATOR MISSION LAUNCHER.
  41. };
  42.  
  43. enum eVNetworkFlags {
  44.     OPT_FLAG_ISACTIVE,
  45.     OPT_FLAG_ISLIST,
  46.     OPT_FLAG_DONT_SYNC,
  47.     OPT_FLAG_LOCKABLE,
  48.     OPT_FLAG_KICK_LIST
  49. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement