With out a proper world border mod i have found a work around I figured i would share.
First you need to enable command blocks in you server config.
Second place a command block to the right of a computer close to 0,0
then do a short program in the computer to output a redstone signal every so often.
then in the command block enter the following line.
rm is minimum range anyone outside of this range would be teleported back to 0 64 0 (or what ever point you like)
this scans every 5 [sleep(300)]mins for some one outside of the border.
The scan seams to work for all Mystcraft ages at once so you can not set different ranges for different ages. Have not tested with nether or twilight forest.
more info on command blocks: http://www.minecraftwiki.net/wiki/Command_Block
First you need to enable command blocks in you server config.
Second place a command block to the right of a computer close to 0,0
then do a short program in the computer to output a redstone signal every so often.
Code:
while true do
redstone.setOutput("right",true)
sleep(.2)
redstone.setOutput("right",false)
sleep(300)
end
then in the command block enter the following line.
Code:
/tp @a[rm=3000] 0 64 0
rm is minimum range anyone outside of this range would be teleported back to 0 64 0 (or what ever point you like)
this scans every 5 [sleep(300)]mins for some one outside of the border.
The scan seams to work for all Mystcraft ages at once so you can not set different ranges for different ages. Have not tested with nether or twilight forest.
more info on command blocks: http://www.minecraftwiki.net/wiki/Command_Block