Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. /*
  2. Author: PokerWow
  3. Teamspeak 3: ts.the-programmer.com
  4. Web site: www.the-programmer.com
  5.  
  6. Terms of use:
  7. - This file is forbidden unless you have permission from the author. If you have this file without permission to use it please do not use it and do not share it.
  8. - If you have permission to use this file, you can use it on your server however it is strictly forbidden to share it.
  9. - Out of respect for the author please do not delete this information.
  10.  
  11. License number:
  12. Server's name:
  13. Owner's name:
  14. */
  15. #define false 0
  16. #define true 1
  17.  
  18. class Stock_System_Config {
  19. default_lang = "en"; // fr / en
  20.  
  21. increment_price_according_copies_left = true;
  22. increment_start_quantity = 5;
  23. increment_factor = 25;
  24.  
  25. decrement_price_according_copies_left = true;
  26. decrement_start_quantity = 20;
  27. decrement_factor = 25;
  28.  
  29. configuration_itemsStock[] = {
  30.  
  31. {"B_Quadbike_01_F", 5, "start_date", "end_date", "vehicles"},
  32. {"RDS_Gaz24_Civ_02", 5, "start_date", "end_date", "vehicles"},
  33. {"RDS_Gaz24_Civ_01", 5, "start_date", "end_date", "vehicles"}
  34.  
  35.  
  36.  
  37. /* {"class_name", stock, "start_date", "end_date", "category"}
  38. -> category = vehicles OR weapons
  39. -> start_date and end_date = YEAR-MONTH-DAY OR "" if there is no date restrictions
  40. Example : {"C_Hatchback_01_F", 10, "2019-01-25", "", "vehicles"}
  41. */
  42. };
  43. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement