2021-06-02 15:00:14 -04:00
|
|
|
maketangible('login')
|
|
|
|
|
|
|
|
|
|
function login.interface(actor, place)
|
|
|
|
|
gui.menu_item("becomeplayer", "Become a Player")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function login.action.becomeplayer(actor, place, dialog)
|
|
|
|
|
tangible.setclass(actor, player)
|
|
|
|
|
end
|
|
|
|
|
|
2021-11-21 13:35:39 -05:00
|
|
|
function setfoo(n)
|
|
|
|
|
tangible.nopredict()
|
2021-11-23 13:18:23 -05:00
|
|
|
tangible.actor().inventory.foo = n
|
2021-11-21 13:35:39 -05:00
|
|
|
end
|
2021-11-23 16:10:48 -05:00
|
|
|
|
|
|
|
|
function buildq()
|
|
|
|
|
return tangible.build{class="login", x=10, y=0, z=0, plane="nowhere", graphic="what"}
|
|
|
|
|
end
|
|
|
|
|
|