Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. // ==========================================================================================================================================================
  2. // Title: The big fat list of useful things
  3. // Author(s): Yours truely
  4. //
  5. // Description: Because not everyone is capible of remembering every last thing in existance at any given point.
  6. // ==========================================================================================================================================================
  7.  
  8. // ==========================================================================================================================================================
  9. // Table of Contents:
  10. // ----------------------------------------------------------------------------------------------------------------------------------------------------------
  11. // Section 1: Packages .............. 1
  12. // Section 2: Varaibles ............. 12
  13. // Section 3: Functions ............. 11
  14. // Section 4: Prefs ................. 15
  15. // ==========================================================================================================================================================
  16. // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17.  
  18. // ==========================================================================================================================================================
  19. // Section 1: Packages
  20. // ==========================================================================================================================================================
  21.  
  22. SpaceRP_PlayerSpawn - Sending the welcome message to the player, etc...
  23.  
  24. // ==========================================================================================================================================================
  25. // Section 2: Variables
  26. // ==========================================================================================================================================================
  27.  
  28. %Client.Money - How much money the player has.
  29.  
  30. %client.TotalAir - How much air the player has.
  31.  
  32. %client.isDonator - (True, or false)
  33.  
  34. %client.Lang - Language for the player. (Spanish (ES) or English (EN) currently)
  35.  
  36. %client.Age - The players age, default is 1 if not set.
  37.  
  38. %client.donatorTrial - True if the player is testing out the donator, false otherwise.
  39.  
  40. %client.doneTrial - True if the player has already done the trial, false otherwise.
  41.  
  42. %client.Veldspar - Ore type, amount of ore.
  43.  
  44. %client.Scordite - Ore type, amount of ore.
  45.  
  46. %client.Pyroxeres - Ore type, amount of ore.
  47.  
  48. %client.Omber - Ore type, amount of ore.
  49.  
  50. %client.TotalOre - Total amount of ore the player has.
  51.  
  52. // ==========================================================================================================================================================
  53. // Section 3: Functions
  54. // ==========================================================================================================================================================
  55.  
  56. SpaceRP_Load_Config(string Name, bool Reload); - Loads configs (Returns true if successful, false otherwise.)
  57.  
  58. SpaceRP_Load_Modules(); - Loads modules (Returns true if successful, false otherwise.)
  59.  
  60. SpaceRP_cOUT(string Text); - Prints text to Console
  61.  
  62. SpaceRP_RunUpdate(); - Self Explanitory
  63.  
  64. isBlank(string Text); - Checks if a string/text is not just empty, AKA: ""
  65.  
  66. SpaceRPStatus::UpdateClient(int client); - Self Explanitory
  67.  
  68. SpaceRPStatus::GetAir(int client); - Returns string
  69.  
  70. SpaceRPStatus::UpdateAll(); - Self Explanitory
  71.  
  72. SpaceRP_SaveData(int Client, String Datatypes, string Values); - (Returns true if successful, false otherwise.)
  73.  
  74. SpaceRP_LoadData(int Client); - (Returns true if successful, false otherwise.)
  75.  
  76. SpaceRP_Load_RPData() - Load default data for saving.
  77.  
  78. // ==========================================================================================================================================================
  79. // Section 4: Prefs
  80. // ==========================================================================================================================================================
  81.  
  82. $SpaceRP::System::ModulesPath - Self Explanitory
  83.  
  84. $SpaceRP::System::ModulesFilePath - Self Explanitory
  85.  
  86. $SpaceRP::System::StatusBar["Font"] - Self Explanitory
  87.  
  88. $SpaceRP::System::StatusBar["Font", "Size"] - Self Explanitory
  89.  
  90. $SpaceRP::System::StatusBar["Font", "Full"] - Self Explanitory
  91.  
  92. $SpaceRP::System::StatusBar["Icon"] - Self Explanitory
  93.  
  94. $SpaceRP::Message["WelcomeSpawn", "EN"] - Self Explanitory
  95.  
  96. $SpaceRP::Message["WelcomeSpawn", "ES"] - Self Explanitory
  97.  
  98. $SpaceRP::System::SavePath - Self Explanitory
  99.  
  100. $SpaceRP::System::Datapath - Self Explanitory
  101.  
  102. $SpaceRP::Config::Path - Self Explanitory
  103.  
  104. $SpaceRP::StatusBar::Text["Money", "ES"] - Self Explanitory
  105.  
  106. $SpaceRP::StatusBar::Text["Total Ore", "ES"] - Self Explanitory
  107.  
  108. $SpaceRP::StatusBar::Text["Money", "EN"] - Self Explanitory
  109.  
  110. $SpaceRP::StatusBar::Text["Total ore", "EN"] - Self Explanitory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement