Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function gridlistPlacements()
  2. guiGridListClear(Travel_grid)
  3. for key, value in pairs(destinations) do
  4. local zone, name, x, y, z = unpack(value)
  5. local price = getDistanceBetweenPoints3D(x, y, z, rX, rY, rZ)
  6. local row = guiGridListAddRow(Travel_grid)
  7. if (zone == "LS") then
  8. zone == "Los Santos"
  9. elseif (zone == "SF") then
  10. zone == "San Fierro"
  11. elseif (zone == "B") then
  12. zone == "Bases"
  13. elseif (zone == "LV") then
  14. zone == "Las Venturas"
  15. end
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement