Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1.  
  2. function GeneratePackage()
  3. local file = GetResPath("/script/InGameMall.sql")
  4. local LogFile = io.open(file,'a')
  5. local Package =
  6. {
  7. {comName = "1 Sunset Crystal", comClass = 7, comPrice = 1, comRemack = "1 Sunset Crystal",
  8. items = {
  9. {id = 30027, quantity = 1},
  10. }
  11. },
  12. {comName = "5 Sunset Crystal", comClass = 7, comPrice = 5, comRemack = "5 Sunset Crystal",
  13. items = {
  14. {id = 30028, quantity = 1},
  15. }
  16. },
  17. {comName = "10 Sunset Crystal", comClass = 7, comPrice = 10, comRemack = "10 Sunset Crystal",
  18. items = {
  19. {id = 30029, quantity = 1},
  20. }
  21. },
  22. },
  23. {comName = "50 Sunset Crystal", comClass = 7, comPrice = 50, comRemack = "50 Sunset Crystal",
  24. items = {
  25. {id = 30030, quantity = 1},
  26. }
  27. },
  28. },
  29. {comName = "100 Sunset Crystal", comClass = 7, comPrice = 100, comRemack = "100 Sunset Crystal",
  30. items = {
  31. {id = 30031, quantity = 1},
  32. }
  33. },
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement