Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1.  
  2. https://gyazo.com/a6ae39d8143abc43b537761e6cfb4156
  3.  
  4. https://gyazo.com/4f0c9ee3c545779830578da6ee4d12ee
  5.  
  6. https://gyazo.com/ae02083342abe8dbcc16e07fb4ac7807
  7.  
  8. https://gyazo.com/278c6a585fc5ce382ae1914144508c81
  9.  
  10. https://gyazo.com/45ebff23c6f70c8cee4c0deeeaa27d37
  11.  
  12. https://gyazo.com/67b5745147a882b93d3d6ede5ae238f3
  13.  
  14.  
  15.  
  16. Offline shop :
  17.  
  18. -> You can enable/disable yang limit
  19.  
  20. ( smart thing instead of using ifdef/else, you just use in service.h just use
  21.  
  22. typedef int64_t GoldType;
  23. typedef uint64_t uGoldType;
  24.  
  25. #define UGOLD_FORMAT "%ull"
  26. #define GOLD_FORMAT "%lld"
  27.  
  28. or
  29.  
  30. typedef int GoldType;
  31. typedef unsigned int uGoldType;
  32. #define GOLD_FORMAT "%d"
  33. #define UGOLD_FORMAT "%u
  34.  
  35.  
  36.  
  37.  -> Easy to configure from service.h
  38.  
  39. #define SHOP_ITEM_MAX_PRICE 999999999
  40. #define OFFLINE_SHOP_TIME_LIMIT 3600 * 48
  41. #define OFFLINE_SHOP_RENEW_PRICE 1000000
  42.  
  43. -> You can add/remove/close the shop from everywhere/every channel
  44.  
  45. -> New window in item table (OFFLINE_SHOP) so you don't need a new table for items
  46.  
  47. -> System using just 2 queries and Cache
  48.  
  49. -> You can set the time for flushing Cache from conf.txt
  50.  
  51. -> You can set the map allowed for creating offline shop from config
  52.  
  53. -> You can Lock/Unlock the shop ( When shop it's locked it will be red on the minimap and you will be the only person which can see it )
  54.  
  55. -> Price renewal ( f.e : You add 1x Blessing Scroll with 10k so when you will add 10x or 100x the price will be auto inputted x count: Work if you add more or less)
  56.  
  57. -> Items disappear when having 0 time
  58.  
  59. -> After the shop time expire will be auto-locked and you will get a new button "Renew" which renew the time
  60.  
  61. -> You can add an effect for shops from PlayerSettingsModule.py and only the owner of the shop can see it
  62.  
  63. -> Code it's 100% clean and professional without bugs or leaks
  64.  
  65.  
  66.  
  67. Search shop
  68.  
  69. -> You can sort items by price
  70.  
  71. -> You can add items on bookmarks
  72.  
  73. -> When you press on the item from bookmarks will be auto inputted in the search category
  74.  
  75. -> You can see the count / the attributes of items
  76.  
  77. -> You can contact the shop owner with PM Button
  78.  
  79. -> With left click you can buy the item direct from search shop and with right-click the shop will be marked
  80.  
  81. -> You can buy from shops which are on the same core as you are
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement