Advertisement
Guest User

yep its a sign

a guest
Oct 2nd, 2011
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.28 KB | None | 0 0
  1. local featureDef    =   {
  2.     --name = "--will be replaced anyway--",
  3.     --description = "--will be replaced anyway--",
  4.     --object = "--will be replaced anyway--",
  5.     footprintx = 1,
  6.     footprintz = 3,
  7.     height = 30,
  8.     blocking = true,
  9.     upright = false,   
  10.     energy = 0,
  11.     metal = 0,
  12.     damage =40,
  13.     flammable = false,
  14.     reclaimable = false,
  15.     autoreclaimable = false,
  16.     noselect = true,
  17.     mass = 5000,
  18. }
  19.  
  20. local tpsign_1 = {}
  21. local tpsign_2 = {}
  22. local tpsign_3 = {}
  23. local tpsign_4 = {}
  24. local tpsign_5 = {}
  25.  
  26. for j,x in ipairs(featureDef) do
  27.     tpsign_1[j] = x
  28.     tpsign_2[j] = x
  29.     tpsign_3[j] = x
  30.     tpsign_4[j] = x
  31.     tpsign_5[j] = x
  32. end
  33.  
  34. tpsign_1.name = "tpsign_1"
  35. tpsign_1.object = "tpsign_1.s3o"
  36. tpsign_1.description ="woof woof"
  37.  
  38. tpsign_2.name = "tpsign_2"
  39. tpsign_2.object = "tpsign_2.s3o"
  40. tpsign_2.description ="Derp"
  41.  
  42. tpsign_3.name = "tpsign_3"
  43. tpsign_3.object = "tpsign_3.s3o"
  44. tpsign_3.description ="Nothing is cooler"
  45.  
  46. tpsign_4.name = "tpsign_4"
  47. tpsign_4.object = "tpsign_4.s3o"
  48. tpsign_4.description ="Join us or DIE!"
  49.  
  50. tpsign_5.name = "tpsign_5"
  51. tpsign_5.object = "tpsign_5.s3o"
  52. tpsign_5.description ="Respect your local newb"
  53.  
  54. return lowerkeys({
  55. ["tpsign_1"] = tpsign_1,
  56. ["tpsign_2"] = tpsign_2,
  57. ["tpsign_3"] = tpsign_3,
  58. ["tpsign_4"] = tpsign_4,
  59. ["tpsign_5"] = tpsign_5,
  60. }
  61. )
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement