Advertisement
Guest User

Untitled

a guest
Feb 6th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. minetest.register_node("pushable_block:accelerator_off", {
  2. description = "Mese Monorail Accelerator off",
  3. tiles ={"pushable_block_accelerator_off.png"},
  4. is_ground_content = true,
  5. groups = {cracky=3, mesecon=2},
  6. drop = 'pushable_block:accelerator_off 1',
  7.  
  8. mesecons = {
  9. state = "off",
  10. onstate = "pushable_block:accelerator_on",
  11. }
  12. })
  13.  
  14. minetest.register_node("pushable_block:accelerator_on", {
  15. description = "Mese Monorail Accelerator on",
  16. tiles ={"pushable_block_accelerator_on.png"},
  17. is_ground_content = true,
  18. groups = {cracky=3, mesecon=2},
  19. drop = 'pushable_block:accelerator_off 1',
  20.  
  21. mesecons = {
  22. state = "on",
  23. offstate = "pushable_block:accelerator_off",
  24. }
  25.  
  26. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement