Advertisement
Guest User

Untitled

a guest
Sep 29th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.80 KB | None | 0 0
  1. local SERVER_RULES_FORMSPEC = "size[10,10]"..
  2.                               "label[1,1;Rules:]"..
  3.                               "label[2,2;1. Don't Ever try to rule overrule Admins]"..
  4.                               "label[3,3;2. Play fair!]"..
  5.                               "label[4,4; ]"..
  6.                               "label[5,5; How to Play!]"..
  7.                               "label[5,5; You start with a Set amount of money, find a piece of property]"..
  8.                               "label[6,6; Build-up and fight and others stuff, to expand buy some Land Claims From Someone...]"
  9. minetest.register_on_joinplayer(function(player)
  10.         minetest.after(3, function(player)
  11.                 minetest.show_formspec(player:get_player_name(), "server_rules", SERVER_RULES_FORMSPEC)
  12.         end, player)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement