stoneharry

Untitled

Jul 3rd, 2015
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. local CHOICE_TABLE = {
  2.     -- TYPES:
  3.     --      1: Spell
  4.     --      2: Item
  5.     -- [level] = { { type, ID, chance }, ... }
  6.     [2] = {
  7.         {1, 90008, 100},
  8.         {2, 23368, 100},
  9.         {2, 26029, 100}
  10.     },
  11.     [3] = {
  12.         {2, 50055, 100},
  13.         {2, 23368, 100},
  14.         {2, 26029, 100}
  15.     },
  16.     [4] = {
  17.         {1, 90010, 100},
  18.         {2, 23368, 100},
  19.         {2, 26029, 100}
  20.     },
  21.     [5] = {
  22.         {1, 90000, 100},
  23.         {2, 50055, 100},
  24.         {2, 23368, 100}
  25.     },
  26.     [6] = {
  27.         {1, 90011, 100},
  28.         {1, 90009, 100},
  29.         {2, 23368, 33},
  30.         {2, 50055, 33},
  31.         {2, 26029, 33}
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment