Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 KB | None | 0 0
  1.  
  2. local RankStatisticTable = {
  3. ["Skazaniec"] = { hp = 300, mp = 10, str = 40, dex = 40, SKILL_1H = 10, SKILL_2H = 10, SKILL_BOW = 0, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Skazaniec
  4. ["Knecht"] = { hp = 400, mp = 10, str = 60, dex = 40, SKILL_1H = 30, SKILL_2H = 10, SKILL_BOW = 0, SKILL_CBOW = 25, ACROBATIC = 0 }, -- Knecht
  5. ["Gwardzista"] = { hp = 600, mp = 10, str = 85, dex = 65, SKILL_1H = 50, SKILL_2H = 20, SKILL_BOW = 0, SKILL_CBOW = 40, ACROBATIC = 0 }, -- Gwardzista
  6. ["Rycerz"] = { hp = 800, mp = 150, str = 110, dex = 90, SKILL_1H = 70, SKILL_2H = 40, SKILL_BOW = 0, SKILL_CBOW = 60, ACROBATIC = 0 }, -- Rycerz
  7. ["Paladyn"] = { hp = 900, mp = 300, str = 130, dex = 110, SKILL_1H = 90, SKILL_2H = 60, SKILL_BOW = 0, SKILL_CBOW = 70, ACROBATIC = 0 }, -- Paladyn
  8. ["General"] = { hp = 1000, mp = 400, str = 150, dex = 130, SKILL_1H = 90, SKILL_2H = 60, SKILL_BOW = 0, SKILL_CBOW = 70, ACROBATIC = 0 }, -- General
  9.  
  10. ["Mysliwy"] = { hp = 600, mp = 0, str = 60, dex = 60, SKILL_1H = 30, SKILL_2H = 10, SKILL_BOW = 20, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Myśliwy
  11. ["Lekki Lowca Smokow"] = { hp = 700, mp = 0, str = 90, dex = 90, SKILL_1H = 50, SKILL_2H = 20, SKILL_BOW = 30, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Lekki Łowca Smoków
  12. ["Lowca Smokow"] = { hp = 800, mp = 0, str = 120, dex = 120, SKILL_1H = 70, SKILL_2H = 30, SKILL_BOW = 50, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Łowca Smoków
  13. ["Ciezki Lowca Smokow"] = { hp = 900, mp = 0, str = 150, dex = 150, SKILL_1H = 90, SKILL_2H = 60, SKILL_BOW = 70, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Ciężki Łowca Smoków
  14. ["Lider Łowcow"] = { hp = 1200, mp = 0, str = 160, dex = 150, SKILL_1H = 90, SKILL_2H = 60, SKILL_BOW = 70, SKILL_CBOW = 0, ACROBATIC = 0 }, -- Lider
  15. };
  16.  
  17. local RankItemsTable = {
  18. ["Skazaniec"] = {
  19. { item_instance = "ITAR_PRISONER", amount = 1 },
  20. { item_instance = "ITMW_2H_AXE_L_01", amount = 1 },
  21. { item_instance = "ITFO_SAUSAGE", amount = 5 },
  22. { item_instance = "ITFO_WATER", amount = 3 },
  23. },
  24. ["Knecht"] = {
  25. },
  26. ["Gwardzista"] = {
  27. },
  28. ["Rycerz"] = {
  29. { item_instance = "ITAR_PAL_M", amount = 1 },
  30. { item_instance = "ITMW_1H_SPECIAL_01", amount = 1 },
  31. { item_instance = "ITRW_CROSSBOW_M_01", amount = 1 },
  32. { item_instance = "ITRW_BOLT", amount = 20 },
  33. { item_instance = "ITFOMUTTONRAW", amount = 10 },
  34. { item_instance = "ITFO_WINE", amount = 1 },
  35. { item_instance = "ITFO_WATER", amount = 5 },
  36. { item_instance = "ITFO_SAUSAGE", amount = 1 },
  37. { item_instance = "ITRU_PALLIGHT", amount = 1 },
  38. { item_instance = "ITRU_PALDESTROYEVIL", amount = 1 },
  39. },
  40.  
  41. ["Paladyn"] = {
  42. { item_instance = "ITAR_PAL_H", amount = 1 },
  43. { item_instance = "ITMW_1H_SPECIAL_01", amount = 1 },
  44. { item_instance = "ITRW_BOLT", amount = 30 },
  45. { item_instance = "ITFOMUTTONRAW", amount = 10 },
  46. { item_instance = "ITFO_WINE", amount = 2 },
  47. { item_instance = "ITFO_WATER", amount = 10 },
  48. { item_instance = "ITFO_SAUSAGE", amount = 2 },
  49. { item_instance = "ITRU_PALLIGHT", amount = 1 },
  50. { item_instance = "ITRU_PALLIGHTHEAL", amount = 1 },
  51. { item_instance = "ITRU_PALDESTROYEVIL", amount = 1 },
  52. },
  53. ["General"] = {
  54. { item_instance = "ITAR_PAL_H", amount = 1 },
  55. { item_instance = "ITMW_1H_SPECIAL_02", amount = 1 },
  56. { item_instance = "ITRW_CROSSBOW_H_01", amount = 1 },
  57. { item_instance = "ITRW_BOLT", amount = 60 },
  58. { item_instance = "ITFOMUTTONRAW", amount = 20 },
  59. { item_instance = "ITFO_WINE", amount = 5 },
  60. { item_instance = "ITFO_WATER", amount = 20 },
  61. { item_instance = "ITFO_SAUSAGE", amount = 4 },
  62. { item_instance = "ITRU_PALLIGHT", amount = 1 },
  63. { item_instance = "ITRU_PALMEDIUMHEAL", amount = 1 },
  64. { item_instance = "ITRU_PALDESTROYEVIL", amount = 1 },
  65. },
  66. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement