Advertisement
Guest User

SAP

a guest
Sep 27th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.30 KB | None | 0 0
  1. /**********************************************************************************************************
  2. * Copyright (c) 2015-2016 San Andreas Playground *
  3. * *
  4. * *
  5. * *> Credits : *
  6. * Includes -> a_samp ( SA:MP Team ) *
  7. * -> zcmd *
  8. * -> streamer *
  9. * -> YSI Files ( YSI ) *
  10. * -> a_mysql ( BlueG ) *
  11. * -> irc *
  12. * -> Dini *
  13. * -> sscanf2 *
  14. * *
  15. * Scripters : *
  16. * -> Yassine ( Server Owner & Founder ) *
  17. * -> Deron_Green ( IRC System ) *
  18. * -> Sreyas ( DeathMatches ) *
  19. * *
  20. * ChangeLog : *
  21. * -> First Release (2016 - 06 - 28) *
  22. * -> Update IRC System (2016 - 08 - 20) *
  23. * -> Second Release(2016 - 09 - 24) *
  24. * -> Open Source (2016 - 09 - 25) *
  25. * *
  26. * **-> Scripting STAFF / HELPERS : *
  27. * *
  28. * --> [H]Neo -------> Server Founder *
  29. * --> Giftson ------> Gamemode Founder *
  30. * --> [H]hold ------> BETA TESTER & Management *
  31. * *
  32. **********************************************************************************************************/
  33.  
  34. // Required Includes ======================================================================================
  35.  
  36. #include <SAPData/Server/Includes.pwn>
  37.  
  38. // Required Defines =======================================================================================
  39.  
  40. #include <SAPData/Server/ColorDefines.pwn>
  41. #include <SAPData/Server/OthersDefines.pwn>
  42.  
  43. // Admin Settings =========================================================================================
  44.  
  45. #include <SAPData/Player/Admin.pwn>
  46.  
  47. // Gamemode Init ==========================================================================================
  48.  
  49. #include <SAPData/Server/GMStart.pwn>
  50. #include <SAPData/Server/GMFail.pwn>
  51.  
  52. // Server Settings ========================================================================================
  53.  
  54. #include <SAPData/Server/IRC.pwn>
  55. #include <SAPData/Server/SpawnManager.pwn>
  56. #include <SAPData/Server/Main.pwn>
  57. #include <SAPData/Server/Performed.pwn>
  58.  
  59. // Chat Settings ==========================================================================================
  60.  
  61. #include <SAPData/Chat/ChatManager.pwn>
  62.  
  63. // Player Settings ========================================================================================
  64.  
  65. #include <SAPData/Player/Conx/Connect.pwn>
  66. #include <SAPData/Player/Conx/Disconnect.pwn>
  67. #include <SAPData/Player/Radio.pwn>
  68. #include <SAPData/Player/RequestClass.pwn>
  69.  
  70. // GamePlay && Features ===================================================================================
  71.  
  72. //#include <SAPData/Gameplay/TheShip.pwn> // Not Working (Not Yet Started)
  73. #include <SAPData/Gameplay/DeathMatches.pwn>
  74. #include <SAPData/Gameplay/Ramping.pwn>
  75. #include <SAPData/Gameplay/Announces.pwn>
  76. #include <SAPData/Gameplay/CarSpawner.pwn>
  77. #include <SAPData/Gameplay/WeaponsSpawner.pwn>
  78. #include <SAPData/Gameplay/Teleports.pwn>
  79. #include <SAPData/Gameplay/DamageSystem.pwn>
  80. #include <SAPData/Gameplay/Duel.pwn>
  81. #include <SAPData/Gameplay/Stunt.pwn>
  82.  
  83. // Anti-Cheat =============================================================================================
  84.  
  85. // COMING SOOON....
  86.  
  87. // GNU License ============================================================================================
  88.  
  89. /**
  90. * Copyright (c) 2015-2016 San Andreas Playground
  91. *
  92. * This program is free software: you can redistribute it and/or modify it under the terms of the
  93. * GNU General Public License as published by the Free Software Foundation, either version 3 of the
  94. * License, or (at your option) any later version.
  95. *
  96. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
  97. * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  98. * General Public License for more details.
  99. *
  100. * You should have received a copy of the GNU General Public License along with this program.
  101. * If not, see <http://www.gnu.org/licenses/>.
  102. */
  103.  
  104. //=========================================================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement