setRoomEnv(roomId, envId)? Which envId corresponds to, say, green?discworld.starturtle.net port 4242 and secure unchecked?82.68.167.69 instead of the hostnameDiscworld also supports IPv6 - the address for this is the same but only port 4242 is supported. http://discworld.starturtle.net/lpc/playing/getting_started.htmlmyContainer:toggleFixedSize()setRoomEnv(roomId, envId)discworld.starturtle.net424282.68.167.69Discworld also supports IPv6 - the address for this is the same but only port 4242 is supported.myContainer = myContainer or Adjustable.Container:new({name = "myContainer", width = 100, height = 100})
function myContainer:toggleFixedSize()
if not self.FixedSize then
self.connectedToBorder = {}
self.connectedToBorder.bottom = true
self.connectedToBorder.left = true
self.connectedToBorder.top = true
self.connectedToBorder.right = true
self:setAbsolute(true)
self.FixedSize = true
else
self.connectedToBorder = {}
self.FixedSize = false
end
end