I've been playing single player Voxelibre a lot since the beginning of the year, and found myself placing an amethyst block in a little closet in each of my bases, then writing down and saving the coordinates for it in notepad and using /tp to jump between these "pads." Then I saw this mod, started using it, and thought it was GREAT! Saved me a lot of trouble! Very useful so far, and makes finding ocean temples a much more significant event!
The only problem is:
-- Additional checks
if dx < -1000 or dx > 1000 or dy < 1 or dy > 30000 or dz < -1000 or dz > 1000 then
minetest.chat_send_player(pname, "Coordinates are out of acceptable range!")
... why???
Yeah sure I can just edit it myself or just comment it out, but WHY is it here in the first place?
If I'm reading the code correctly, it seems to set a range limit on how far you can teleport using the pads. I guess what I'm asking is why did you put the limit there, and why is it only 1000? Did I read it incorrectly?
For VoxeLibre this mod does not let you register Teleport Pads underground or too far away - error msg ("Coordinates are out of acceptable range!").
You need to change the code in the file ..\mods\teleporter_plates\init.lua like this:
In function minetest.register_on_player_receive_fields(function(player, formname, fields)
(around line 305)
-- Additional checks
if dx < -30912 or dx > 30927 or dy < -64 or dy > 30927 or dz < -30912 or dz > 30927 then
minetest.chat_send_player(pname, "Coordinates are out of acceptable range!")
return
end
This validates the correct coordinate limits for VoxeLibre.
I've been playing single player Voxelibre a lot since the beginning of the year, and found myself placing an amethyst block in a little closet in each of my bases, then writing down and saving the coordinates for it in notepad and using /tp to jump between these "pads." Then I saw this mod, started using it, and thought it was GREAT! Saved me a lot of trouble! Very useful so far, and makes finding ocean temples a much more significant event!
The only problem is:
-- Additional checks if dx < -1000 or dx > 1000 or dy < 1 or dy > 30000 or dz < -1000 or dz > 1000 then minetest.chat_send_player(pname, "Coordinates are out of acceptable range!")
... why??? Yeah sure I can just edit it myself or just comment it out, but WHY is it here in the first place?
I'll need to investigate. Did you make sure the coordinates were in tge correct position?
If I'm reading the code correctly, it seems to set a range limit on how far you can teleport using the pads. I guess what I'm asking is why did you put the limit there, and why is it only 1000? Did I read it incorrectly?
For VoxeLibre this mod does not let you register Teleport Pads underground or too far away - error msg ("Coordinates are out of acceptable range!").
You need to change the code in the file ..\mods\teleporter_plates\init.lua like this:
In function minetest.register_on_player_receive_fields(function(player, formname, fields) (around line 305)
-- Additional checks
This validates the correct coordinate limits for VoxeLibre.