Advertisement
Guest User

Question 1

a guest
May 24th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1.  
  2. local tab = {
  3. {"Maxime", 5000},
  4. {"aaufppxf4", 2323},
  5. {"Sibrecht", 1},
  6. {"Smith", 542},
  7. {"Mickel", 542},
  8. {"Theno", 425},
  9. {"Mirazoka", 54200},
  10. }
  11.  
  12. function DisplayContent()
  13. for key, tab in ipairs(tab) do
  14. outputChatBox(tab[1] .. " - " .. tab[2])
  15. end
  16. end
  17. addEventHandler("onResourceStart", getResourceRootElement(), DisplayContent)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement