I apologize if this is a noob question or if it was answered somewhere else, but I am wondering how I can allow the teleportation feature on my forge SMP server for all players with the client. We are using the 1.7.10 version. Thank you for any feedback you can give.
java.lang.IndexOutOfBoundsException
at java.nio.Buffer.checkIndex(Unknown Source)
at java.nio.DirectByteBuffer.get(Unknown Source)
at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)
at com.thevoxelbox.voxelmap.b.f.func_73863_a(Unknown Source)
at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:461)
at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1078)
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1048)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345)
at net.minecraft.client.main.Main.main(SourceFile:120)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at java.nio.Buffer.checkIndex(Unknown Source)
at java.nio.DirectByteBuffer.get(Unknown Source)
at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)
at com.thevoxelbox.voxelmap.b.f.func_73863_a(Unknown Source)
at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:461)
-- System Details --
Details:
Minecraft Version: 1.8
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.8.0_40, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 321018872 bytes (306 MB) / 859475968 bytes (819 MB) up to 1037959168 bytes (989 MB)
JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
FML: MCP v9.10 FML v8.0.42.1341 Minecraft Forge 11.14.1.1341 3 mods loaded, 3 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{8.0.42.1341} [Forge Mod Loader] (forge-1.8-11.14.1.1341.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{11.14.1.1341} [Minecraft Forge] (forge-1.8-11.14.1.1341.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Loaded coremods (and transformers):
Launched Version: 1.8
LWJGL: 2.9.1
OpenGL: ATI Mobility Radeon HD 4200 GL version 2.1.8787, ATI Technologies Inc.
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because ARB_framebuffer_object is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.
Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: [ImDaBestPack]
Current Language: English (US)
Profiler Position: N/A (disabled)
thanks that's the stuff. I'm betting you have one of your movement/jump/crouch/sprint keys bound to a mousebutton. You can fix right now by rebinding to use a keyboard button. Can you confirm that is the issue? I'll see what I can do about it
I
apologize if this is a noob question or if it was answered somewhere
else, but I am wondering how I can allow the teleportation feature on my
forge SMP server for all players with the client. We are using the
1.7.10 version. Thank you for any feedback you can give.
use your permission system to give them permission to use /tp or /tppos commands.
ok looks like things break if you have one of the movement/jump/crouch/sprint keys bound to a mouse button. I've got this fixed, will upload in a few hours (need to head out)
fellow modders: don't do this
if (Keyboard.isKeyDown(mc.gameSettings.keyBindSprint.getKeyCode()))
do this instead
if (mc.gameSettings.isKeyDown(mc.gameSettings.keyBindSprint))
The former, if the key is bound to a mousebutton, will send a value somewhere below 0 to Keyboard.isKeyDown, which is out of bounds for its array. Passing it through GameSettings will check if the value is under 0, and if so, will add 100 and pass it to Mouse instead
thanks that's the stuff. I'm betting you have one of your movement/jump/crouch/sprint keys bound to a mousebutton. You can fix right now by rebinding to use a keyboard button. Can you confirm that is the issue? I'll see what I can do about it
Yes thank you that fixed it! I will wait for the version that you talked about to fix this is uploaded but in the meantime I will just switch my sprint to normal when im not in pvp lol. Thanks again.
fix is up. was too lazy to bump the version number. If you were getting a crash on the world map screen and you had a movement key bound to a mouse button, download 1.5.6 again and overwrite the previously downloaded file
---- Minecraft Crash Report ----
// Hey, that tickles! Hehehe!
Time: 25/03/15 08:53
Description: Ticking screen
java.lang.NullPointerException: Ticking screen
at com.thevoxelbox.voxelmap.b.b.<init>(Unknown Source)
at com.thevoxelbox.voxelmap.b.i.a(Unknown Source)
at com.thevoxelbox.voxelmap.litemod.LiteModVoxelMap.newNetworkChunk(Unknown Source)
at com.mumfrey.liteloader.core.event.EventProxy$2.$event00017(Unknown Source)
at net.minecraft.world.chunk.Chunk.func_76607_a(Chunk.java:1280)
at net.minecraft.client.network.NetHandlerPlayClient.func_147269_a(NetHandlerPlayClient.java:1189)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:184)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:242)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
at net.minecraft.client.multiplayer.GuiConnecting.func_73876_c(SourceFile:78)
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1649)
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:961)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:887)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at com.thevoxelbox.voxelmap.b.b.<init>(Unknown Source)
at com.thevoxelbox.voxelmap.b.i.a(Unknown Source)
at com.thevoxelbox.voxelmap.litemod.LiteModVoxelMap.newNetworkChunk(Unknown Source)
at com.mumfrey.liteloader.core.event.EventProxy$2.$event00017(Unknown Source)
at net.minecraft.world.chunk.Chunk.func_76607_a(Chunk.java:1280)
at net.minecraft.client.network.NetHandlerPlayClient.func_147269_a(NetHandlerPlayClient.java:1189)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:184)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:242)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
at net.minecraft.client.multiplayer.GuiConnecting.func_73876_c(SourceFile:78)
I was wondering if there is a way to restrict teleportation for players using only the waypoints the individual player creates while using the mod. If I grant players access to /tp they are allowed to tp to other players and have unlimited access to the map, which I am not wanting them access to. I am trying to restrict their ability to teleport to places only they have been in the game, i.e., waypoints.
I'm running an SMP Forge server and using the Server Tools Mod to adjust permissions.
voxelmap is a client side mod. Stuff like teleportation relies on things already installed on the server (like /tp). If you know of a plugin that enables teleport-to-voxelmap-waypoint you could use that and set permissions for it, but there is no such thing included with VoxelMap (again, a purely client side mod)
Best you could hope for is for someone to create a server plugin that acts like /tppos but gets its coordinates through a Packet250CustomPayload. If it was via text like most commands, the user could just type in whatever coordinates he wanted (like /tppos). You'd need to accept coordinates through a custom packet, which VoxelMap would need to be programmed to send (based on the coordinates of a selected waypoint). Creating such a plugin is outside the purview of what I want to be doing, but if one were made I might be convinced to have VoxelMap send the requisite packets in case the server is listening
That really wouldn't help you though, as users can create (or edit) waypoints to have any coordinate they want. There's nothing stopping someone from creating a waypoint and giving it coordinates 25000, 64, 25000.
voxelmap is a client side mod. Stuff like teleportation relies on things already installed on the server (like /tp). If you know of a plugin that enables teleport-to-voxelmap-waypoint you could use that and set permissions for it, but there is no such thing included with VoxelMap (again, a purely client side mod)
Best you could hope for is for someone to create a server plugin that acts like /tppos but gets its coordinates through a Packet250CustomPayload. If it was via text like most commands, the user could just type in whatever coordinates he wanted (like /tppos). You'd need to accept coordinates through a custom packet, which VoxelMap would need to be programmed to send (based on the coordinates of a selected waypoint). Creating such a plugin is outside the purview of what I want to be doing, but if one were made I might be convinced to have VoxelMap send the requisite packets in case the server is listening
That really wouldn't help you though, as users can create (or edit) waypoints to have any coordinate they want. There's nothing stopping someone from creating a waypoint and giving it coordinates 25000, 64, 25000.
That's what I was afraid of. Thanks for all of your help. I appreciate it.
This is a fantastic mod and I have come to rely on it (maybe too much lol) in my survival worlds. Unfortunately I cannot get it to work with minecraft realms. Latest version of liteloader and voxelmap and MC consistently gives me the "your client is outdated" error. If there is any workaround I would definitely appreciate it.
i was just curious if this is normal. i have the current version of lite loader and voxel map but i keep getting this error spamming thru my console log:
[Client thread/INFO] [LiteLoader]: Calling late init for mod VoxelMap
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Offendor: com/thevoxelbox/voxelmap/c/h.d()V
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Offendor: com/thevoxelbox/voxelmap/c/h.e()V
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
it's nothing to worry about. It's just Forge insisting on something being done their way. VoxelMap has no Forge dependency though (it can run without it) so I can't really count on their method being there to route through. No worries, Forge does it for me when it is around. TBH though I don't really even remember where I call that (part of some old debug routine).
performance improvement: empty regions do not count towards the region pool size. Loading an empty region will never cause a non-empty region to unload (saving having to possibly re-load it later). Empty regions also use no memory now
teleport in Nether works much better. Tp will go to the surface the world map knows about. If no surface at that X/Z, will check above and below to find one (everywhere for SP, loaded chunks for MP). If none found, TP not allowed so you don't end up inside a wall
player icons reflect whether the player has his hat layer turned off
waypoint icons in icon selector sorted alphabetically
I downloaded liteloaer as the current version then downloaded the mod, but when i downloaded voxel from this site and put it in my mods folder, it said it was for 1.7! Help me out!!!!!!!!!!!!
crashlog or it didn't happen
I apologize if this is a noob question or if it was answered somewhere else, but I am wondering how I can allow the teleportation feature on my forge SMP server for all players with the client. We are using the 1.7.10 version. Thank you for any feedback you can give.
Not sure what you need but here:
---- Minecraft Crash Report ----
// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]
Time: 3/24/15 7:10 PM
Description: Rendering screen
java.lang.IndexOutOfBoundsException
at java.nio.Buffer.checkIndex(Unknown Source)
at java.nio.DirectByteBuffer.get(Unknown Source)
at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)
at com.thevoxelbox.voxelmap.b.f.func_73863_a(Unknown Source)
at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:461)
at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1078)
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1048)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:345)
at net.minecraft.client.main.Main.main(SourceFile:120)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at java.nio.Buffer.checkIndex(Unknown Source)
at java.nio.DirectByteBuffer.get(Unknown Source)
at org.lwjgl.input.Keyboard.isKeyDown(Keyboard.java:407)
at com.thevoxelbox.voxelmap.b.f.func_73863_a(Unknown Source)
at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:461)
-- Screen render details --
Details:
Screen name: com.thevoxelbox.voxelmap.b.f
Mouse location: Scaled: (338, 138). Absolute: (683, 353)
Screen size: Scaled: (683, 353). Absolute: (1366, 706). Scale factor of 2
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityPlayerSP['PhasedBass'/333, l='MpServer', x=-253.21, y=63.00, z=229.19]]
Chunk stats: MultiplayerChunkCache: 289, 289
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: -282.00,64.00,230.00 - World: (-282,64,230), Chunk: (at 6,4,6 in -18,14; contains blocks -288,0,224 to -273,255,239), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 6110 game time, 6110 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 105 total; [EntityZombie['Zombie'/3337, l='MpServer', x=-221.50, y=29.00, z=294.50], EntityCreeper['Creeper'/3338, l='MpServer', x=-225.44, y=31.00, z=302.03], EntityCreeper['Creeper'/3339, l='MpServer', x=-225.50, y=29.00, z=299.50], EntityCreeper['Creeper'/3340, l='MpServer', x=-223.50, y=29.00, z=301.50], EntityBat['Bat'/3599, l='MpServer', x=-327.75, y=13.38, z=159.68], EntityChicken['Chicken'/272, l='MpServer', x=-183.97, y=65.00, z=216.00], EntityChicken['Chicken'/273, l='MpServer', x=-186.50, y=71.00, z=211.50], EntityBat['Bat'/3601, l='MpServer', x=-324.58, y=12.95, z=155.26], EntityChicken['Chicken'/274, l='MpServer', x=-187.50, y=77.00, z=212.50], EntityChicken['Chicken'/275, l='MpServer', x=-189.50, y=72.00, z=215.50], EntityPig['Pig'/276, l='MpServer', x=-179.31, y=75.00, z=259.44], EntityPig['Pig'/277, l='MpServer', x=-188.50, y=74.00, z=261.53], EntityPig['Pig'/278, l='MpServer', x=-188.50, y=74.00, z=260.44], EntityPig['Pig'/279, l='MpServer', x=-187.50, y=75.00, z=256.50], EntityBat['Bat'/280, l='MpServer', x=-190.34, y=15.10, z=285.47], EntityCreeper['Creeper'/2604, l='MpServer', x=-264.50, y=56.00, z=163.50], EntityCreeper['Creeper'/2605, l='MpServer', x=-265.50, y=56.00, z=163.50], EntityZombie['Zombie'/4420, l='MpServer', x=-184.50, y=31.00, z=244.50], EntityCreeper['Creeper'/4421, l='MpServer', x=-188.50, y=31.00, z=243.50], EntityPlayerSP['PhasedBass'/333, l='MpServer', x=-253.21, y=63.00, z=229.19], EntityZombie['Zombie'/90, l='MpServer', x=-320.50, y=15.00, z=173.50], EntityZombie['Zombie'/91, l='MpServer', x=-324.50, y=21.00, z=176.88], EntityCreeper['Creeper'/92, l='MpServer', x=-328.09, y=25.00, z=222.22], EntityZombie['Zombie'/93, l='MpServer', x=-324.50, y=26.00, z=220.50], EntityZombie['Zombie'/104, l='MpServer', x=-315.50, y=14.00, z=167.50], EntitySpider['Spider'/105, l='MpServer', x=-318.47, y=14.00, z=172.22], EntityChicken['Chicken'/106, l='MpServer', x=-312.50, y=64.00, z=184.50], EntityChicken['Chicken'/107, l='MpServer', x=-312.50, y=64.00, z=186.50], EntityChicken['Chicken'/108, l='MpServer', x=-312.50, y=64.00, z=186.50], EntityChicken['Chicken'/109, l='MpServer', x=-314.50, y=64.00, z=184.50], EntityZombie['Zombie'/111, l='MpServer', x=-310.50, y=25.00, z=213.50], EntityZombie['Zombie'/112, l='MpServer', x=-314.97, y=30.00, z=227.53], EntityChicken['Chicken'/113, l='MpServer', x=-309.53, y=64.00, z=223.47], EntityZombie['Zombie'/114, l='MpServer', x=-319.63, y=29.00, z=224.84], EntityChicken['Chicken'/115, l='MpServer', x=-309.50, y=77.00, z=239.50], EntityItem['item.tile.sapling.jungle'/116, l='MpServer', x=-310.00, y=73.00, z=232.13], EntityChicken['Chicken'/117, l='MpServer', x=-310.50, y=79.00, z=245.50], EntityChicken['Chicken'/118, l='MpServer', x=-307.50, y=79.00, z=242.50], EntityCreeper['Creeper'/119, l='MpServer', x=-313.56, y=43.00, z=279.38], EntityChicken['Chicken'/135, l='MpServer', x=-302.31, y=63.00, z=181.38], EntityBat['Bat'/136, l='MpServer', x=-290.47, y=29.10, z=205.59], EntityChicken['Chicken'/139, l='MpServer', x=-289.78, y=72.00, z=196.16], EntityChicken['Chicken'/140, l='MpServer', x=-293.63, y=70.00, z=188.53], EntityChicken['Chicken'/141, l='MpServer', x=-289.50, y=68.00, z=193.50], EntityBat['Bat'/145, l='MpServer', x=-285.06, y=18.97, z=242.53], EntitySkeleton['Skeleton'/146, l='MpServer', x=-295.13, y=44.00, z=265.47], EntityZombie['Zombie'/154, l='MpServer', x=-286.00, y=11.00, z=173.56], EntitySkeleton['Skeleton'/155, l='MpServer', x=-279.50, y=21.00, z=171.50], EntityItem['item.item.seeds'/158, l='MpServer', x=-277.28, y=63.00, z=192.59], EntitySkeleton['Skeleton'/159, l='MpServer', x=-277.50, y=12.00, z=219.84], EntityZombie['Zombie'/160, l='MpServer', x=-276.88, y=13.00, z=236.59], EntityCreeper['Creeper'/161, l='MpServer', x=-274.50, y=20.00, z=247.50], EntityZombie['Zombie'/2725, l='MpServer', x=-270.50, y=54.00, z=177.50], EntityZombie['Zombie'/2726, l='MpServer', x=-273.50, y=55.00, z=173.91], EntityEnderman['Enderman'/2727, l='MpServer', x=-272.50, y=54.00, z=178.50], EntityEnderman['Enderman'/169, l='MpServer', x=-267.72, y=42.00, z=182.78], EntityChicken['Chicken'/170, l='MpServer', x=-259.50, y=63.00, z=183.50], EntityChicken['Chicken'/171, l='MpServer', x=-260.50, y=63.00, z=183.50], EntityChicken['Chicken'/172, l='MpServer', x=-261.50, y=63.00, z=180.50], EntityChicken['Chicken'/173, l='MpServer', x=-263.56, y=63.00, z=178.44], EntityBat['Bat'/175, l='MpServer', x=-247.66, y=44.00, z=223.44], EntityBat['Bat'/176, l='MpServer', x=-230.91, y=29.34, z=233.75], EntityBat['Bat'/177, l='MpServer', x=-232.50, y=29.81, z=233.63], EntityCreeper['Creeper'/178, l='MpServer', x=-259.03, y=39.00, z=231.38], EntityCreeper['Creeper'/179, l='MpServer', x=-273.22, y=21.00, z=251.16], EntityItem['item.item.seeds'/180, l='MpServer', x=-259.88, y=63.00, z=270.88], EntityZombie['Zombie'/181, l='MpServer', x=-263.50, y=50.00, z=280.50], EntityCreeper['Creeper'/196, l='MpServer', x=-243.47, y=35.00, z=155.75], EntityBat['Bat'/197, l='MpServer', x=-252.38, y=57.10, z=154.75], EntityZombie['Zombie'/3016, l='MpServer', x=-268.66, y=55.00, z=153.34], EntityBat['Bat'/201, l='MpServer', x=-267.47, y=28.03, z=190.44], EntityZombie['Zombie'/3017, l='MpServer', x=-258.53, y=55.00, z=148.44], EntityZombie['Zombie'/202, l='MpServer', x=-255.41, y=40.00, z=231.13], EntityEnderman['Enderman'/203, l='MpServer', x=-246.69, y=32.00, z=242.34], EntityCreeper['Creeper'/4811, l='MpServer', x=-187.50, y=31.02, z=243.50], EntityItem['item.item.seeds'/204, l='MpServer', x=-241.06, y=63.00, z=250.72], EntityZombie['Zombie'/4812, l='MpServer', x=-186.50, y=31.02, z=244.50], EntityBat['Bat'/206, l='MpServer', x=-227.25, y=33.10, z=156.28], EntityZombie['Zombie'/4814, l='MpServer', x=-185.50, y=31.02, z=244.50], EntitySquid['Squid'/207, l='MpServer', x=-237.28, y=56.84, z=193.03], EntityZombie['Zombie'/4815, l='MpServer', x=-185.50, y=31.02, z=243.50], EntityItem['item.tile.sapling.jungle'/209, l='MpServer', x=-227.31, y=70.00, z=219.13], EntityCreeper['Creeper'/210, l='MpServer', x=-229.50, y=26.00, z=226.50], EntityItem['item.item.seeds'/211, l='MpServer', x=-238.97, y=64.00, z=249.06], EntitySquid['Squid'/212, l='MpServer', x=-229.25, y=59.38, z=261.03], EntityZombie['Zombie'/4822, l='MpServer', x=-327.50, y=23.02, z=166.50], EntitySquid['Squid'/217, l='MpServer', x=-219.50, y=60.00, z=182.59], EntityItem['item.tile.sapling.oak'/218, l='MpServer', x=-210.75, y=71.00, z=206.03], EntityItem['item.tile.sapling.oak'/220, l='MpServer', x=-217.91, y=77.00, z=219.13], EntityItem['item.tile.sapling.oak'/221, l='MpServer', x=-216.25, y=70.00, z=214.59], EntityItem['item.tile.sapling.oak'/222, l='MpServer', x=-214.13, y=79.00, z=215.25], EntityItem['item.tile.sapling.oak'/224, l='MpServer', x=-213.06, y=69.00, z=208.63], EntityItem['item.item.seeds'/225, l='MpServer', x=-214.66, y=62.00, z=252.88], EntitySkeleton['Skeleton'/226, l='MpServer', x=-211.50, y=30.00, z=298.50], EntityCreeper['Creeper'/227, l='MpServer', x=-220.03, y=30.00, z=304.50], EntityCreeper['Creeper'/3299, l='MpServer', x=-247.50, y=31.00, z=281.50], EntitySkeleton['Skeleton'/228, l='MpServer', x=-222.50, y=18.00, z=293.50], EntityPig['Pig'/240, l='MpServer', x=-196.50, y=74.00, z=255.50], EntityPig['Pig'/241, l='MpServer', x=-195.19, y=73.00, z=251.25], EntityPig['Pig'/242, l='MpServer', x=-205.34, y=76.00, z=255.19], EntityPig['Pig'/243, l='MpServer', x=-194.47, y=74.00, z=257.53], EntitySkeleton['Skeleton'/244, l='MpServer', x=-195.41, y=15.00, z=285.03], EntityBat['Bat'/247, l='MpServer', x=-186.59, y=31.11, z=306.53], EntityBat['Bat'/3575, l='MpServer', x=-237.50, y=23.08, z=285.75], EntityBat['Bat'/3583, l='MpServer', x=-301.69, y=29.09, z=201.75]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:351)
at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2488)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:367)
at net.minecraft.client.main.Main.main(SourceFile:120)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
-- System Details --
Details:
Minecraft Version: 1.8
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.8.0_40, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 321018872 bytes (306 MB) / 859475968 bytes (819 MB) up to 1037959168 bytes (989 MB)
JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
FML: MCP v9.10 FML v8.0.42.1341 Minecraft Forge 11.14.1.1341 3 mods loaded, 3 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{8.0.42.1341} [Forge Mod Loader] (forge-1.8-11.14.1.1341.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{11.14.1.1341} [Minecraft Forge] (forge-1.8-11.14.1.1341.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Loaded coremods (and transformers):
Launched Version: 1.8
LWJGL: 2.9.1
OpenGL: ATI Mobility Radeon HD 4200 GL version 2.1.8787, ATI Technologies Inc.
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because ARB_framebuffer_object is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.
Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: [ImDaBestPack]
Current Language: English (US)
Profiler Position: N/A (disabled)
thanks that's the stuff. I'm betting you have one of your movement/jump/crouch/sprint keys bound to a mousebutton. You can fix right now by rebinding to use a keyboard button. Can you confirm that is the issue? I'll see what I can do about it
use your permission system to give them permission to use /tp or /tppos commands.
ok looks like things break if you have one of the movement/jump/crouch/sprint keys bound to a mouse button. I've got this fixed, will upload in a few hours (need to head out)
fellow modders: don't do this
if (Keyboard.isKeyDown(mc.gameSettings.keyBindSprint.getKeyCode()))
do this instead
if (mc.gameSettings.isKeyDown(mc.gameSettings.keyBindSprint))
The former, if the key is bound to a mousebutton, will send a value somewhere below 0 to Keyboard.isKeyDown, which is out of bounds for its array. Passing it through GameSettings will check if the value is under 0, and if so, will add 100 and pass it to Mouse instead
Yes thank you that fixed it! I will wait for the version that you talked about to fix this is uploaded but in the meantime I will just switch my sprint to normal when im not in pvp lol. Thanks again.
fix is up. was too lazy to bump the version number. If you were getting a crash on the world map screen and you had a movement key bound to a mouse button, download 1.5.6 again and overwrite the previously downloaded file
crash when i enter in a server on 1.7.10
---- Minecraft Crash Report ----
// Hey, that tickles! Hehehe!
Time: 25/03/15 08:53
Description: Ticking screen
java.lang.NullPointerException: Ticking screen
at com.thevoxelbox.voxelmap.b.b.<init>(Unknown Source)
at com.thevoxelbox.voxelmap.b.i.a(Unknown Source)
at com.thevoxelbox.voxelmap.litemod.LiteModVoxelMap.newNetworkChunk(Unknown Source)
at com.mumfrey.liteloader.core.event.EventProxy$2.$event00017(Unknown Source)
at net.minecraft.world.chunk.Chunk.func_76607_a(Chunk.java:1280)
at net.minecraft.client.network.NetHandlerPlayClient.func_147269_a(NetHandlerPlayClient.java:1189)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:184)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:242)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
at net.minecraft.client.multiplayer.GuiConnecting.func_73876_c(SourceFile:78)
at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1649)
at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:961)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:887)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at com.thevoxelbox.voxelmap.b.b.<init>(Unknown Source)
at com.thevoxelbox.voxelmap.b.i.a(Unknown Source)
at com.thevoxelbox.voxelmap.litemod.LiteModVoxelMap.newNetworkChunk(Unknown Source)
at com.mumfrey.liteloader.core.event.EventProxy$2.$event00017(Unknown Source)
at net.minecraft.world.chunk.Chunk.func_76607_a(Chunk.java:1280)
at net.minecraft.client.network.NetHandlerPlayClient.func_147269_a(NetHandlerPlayClient.java:1189)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:184)
at net.minecraft.network.play.server.S26PacketMapChunkBulk.func_148833_a(S26PacketMapChunkBulk.java:242)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
at net.minecraft.client.multiplayer.GuiConnecting.func_73876_c(SourceFile:78)
-- Affected screen --
Details:
Screen name: ~~ERROR~~ NullPointerException: null
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['jochuan'/205448, l='MpServer', x=-506,42, y=68,62, z=-442,91]]
Chunk stats: MultiplayerChunkCache: 1, 1
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (4678,73,-875), Chunk: (at 6,4,5 in 292,-55; contains blocks 4672,0,-880 to 4687,255,-865), Region: (9,-2; contains chunks 288,-64 to 319,-33, blocks 4608,0,-1024 to 5119,255,-513)
Level time: 139059172 game time, 140326584 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 1 total; [EntityClientPlayerMP['jochuan'/205448, l='MpServer', x=-506,42, y=68,62, z=-442,91]]
Retry entities: 0 total; []
Server brand: Spigot
Server type: Non-integrated multiplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:373)
at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2432)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:909)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.8.0_40, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 214722112 bytes (204 MB) / 523501568 bytes (499 MB) up to 523501568 bytes (499 MB)
Mod Pack: Unknown / None
LiteLoader Mods: 12 loaded mod(s)
- Mouse Tweaks version 2.4.4
- Gammabright version 3.3
- Link Info version 0.3.1
- Autofish version 0.4.7
- Omniscience version 1.0.1
- Presence Footsteps version r5 for 1.7.10
- Protocol4 version 1.0.2
- BetterClouds version 1.0.1
- VoxelCam version 1.3.1
- VoxelMap version 1.5.6
- TabbyChat version 1.11.2.2
- VoxelLib version 2.3.0
LaunchWrapper: 57 active transformer(s)
- Transformer: cpw.mods.fml.common.asm.transformers.PatchingTransformer
- Transformer: optifine.OptiFineClassTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.MarkerTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.SideTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.EventSubscriptionTransformer
- Transformer: mods.battlegear2.coremod.transformers.EntityPlayerTransformer
- Transformer: mods.battlegear2.coremod.transformers.ModelBipedTransformer
- Transformer: mods.battlegear2.coremod.transformers.NetClientHandlerTransformer
- Transformer: mods.battlegear2.coremod.transformers.NetServerHandlerTransformer
- Transformer: mods.battlegear2.coremod.transformers.PlayerControllerMPTransformer
- Transformer: mods.battlegear2.coremod.transformers.ItemRendererTransformer
- Transformer: mods.battlegear2.coremod.transformers.MinecraftTransformer
- Transformer: mods.battlegear2.coremod.transformers.ItemStackTransformer
- Transformer: mods.battlegear2.coremod.transformers.ItemInWorldTransformer
- Transformer: mods.battlegear2.coremod.transformers.EntityAIControlledByPlayerTransformer
- Transformer: mods.battlegear2.coremod.transformers.EntityOtherPlayerMPTransformer
- Transformer: mods.betterfoliage.loader.impl.BetterFoliageTransformer
- Transformer: codechicken.lib.asm.ClassHeirachyManager
- Transformer: codechicken.core.asm.InterfaceDependancyTransformer
- Transformer: codechicken.core.asm.TweakTransformer
- Transformer: codechicken.core.asm.DelegatedTransformer
- Transformer: codechicken.core.asm.DefaultImplementationTransformer
- Transformer: atomicstryker.dynamiclights.common.DLTransformer
- Transformer: invtweaks.forge.asm.ContainerTransformer
- Transformer: atomicstryker.multimine.common.fmlmagic.MMTransformer
- Transformer: codechicken.nei.asm.NEITransformer
- Transformer: openeye.asm.MultiTransformer
- Transformer: api.player.forge.PlayerAPITransformer
- Transformer: api.player.forge.RenderPlayerAPITransformer
- Transformer: api.player.forge.RenderPlayerAPIEnhancerTransformer
- Transformer: com.creativemd.generationmanager.GenerationTransformer
- Transformer: com.mumfrey.liteloader.transformers.event.EventProxyTransformer
- Transformer: com.mumfrey.liteloader.launch.LiteLoaderTransformer
- Transformer: com.mumfrey.liteloader.client.transformers.CrashReportTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.DeobfuscationTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.AccessTransformer
- Transformer: net.minecraftforge.transformers.ForgeAccessTransformer
- Transformer: mods.battlegear2.coremod.transformers.BattlegearAccessTransformer
- Transformer: codechicken.core.asm.CodeChickenAccessTransformer
- Transformer: invtweaks.forge.asm.ITAccessTransformer
- Transformer: net.malisis.core.asm.MalisisCoreAccessTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.ModAccessTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.ItemStackTransformer
- Transformer: com.gildedgames.util.threadedlighting.asm.TLTransformer
- Transformer: net.malisis.core.asm.MalisisCoreTransformer
- Transformer: net.malisis.core.util.chunkcollision.ChunkCollisionTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.TerminalTransformer
- Transformer: troy.autofish.PacketEntityVelocityTransformer
- Transformer: com.mamiyaotaru.betterclouds.BetterCloudsTransformer
- Transformer: com.mumfrey.liteloader.client.transformers.LiteLoaderEventInjectionTransformer
- Transformer: net.easymfne.omniscience.OmniscienceEventTransformer
- Transformer: com.mumfrey.liteloader.client.transformers.MinecraftOverlayTransformer
- Transformer: mnm.mods.protocol.asm.PacketIOTransformer
- Transformer: com.mumfrey.liteloader.common.transformers.LiteLoaderPacketTransformer
- Transformer: com.thatapplefreak.voxelcam.VoxelCamTransformer
- Transformer: com.thevoxelbox.voxelmap.litemod.VoxelMapTransformer
- Transformer: cpw.mods.fml.common.asm.transformers.ModAPITransformer
JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx512M -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v9.05 FML v7.10.93.1340 Minecraft Forge 10.13.2.1340 Optifine OptiFine_1.7.10_HD_U_B5 61 mods loaded, 61 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
FML{7.10.93.1340} [Forge Mod Loader] (forge-1.7.10-10.13.2.1340-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Forge{10.13.2.1340} [Minecraft Forge] (forge-1.7.10-10.13.2.1340-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
CodeChickenCore{1.0.4.35} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
NotEnoughItems{1.0.4.90} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.4.90-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
OpenEye{0.6} [OpenEye] (OpenEye-0.6-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
PlayerAPI{1.2} [Player API] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
RenderPlayerAPI{1.3} [Render Player API] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
RenderPlayerAPIEnhancer{1.3} [Render Player API Enhancer] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
generationmanager{0.4.1} [Generation Manager Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ThreadedLighting{1.7.10-1.0} [Threaded Lighting] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
malisiscore{1.7.10-0.11.1} [Malisis Core] (malisiscore-1.7.10-0.11.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
gilded-games-util{1.7.10-1.1} [Gilded Games Utility] (gilded-games-util.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
battlegear2{1.0.7.0} [Mine & Blade Battlegear 2 - Bullseye] (1.7.10-MB_Battlegear2-Bullseye-1.0.7.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
zeldaswordskills{1.7.10-2.2.5.b} [Zelda Sword Skills] (1.7.10-zeldaswordskills-2.2.5.b.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
doggytalents{v1.9.0f} [Doggy Talents] ([1.7.10] Doggy Talents - v1.9.0f.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DamageIndicatorsMod{3.2.3} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.2.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
aether{Alpha 1.7.10-1.2} [Aether II] (aether.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
avoidExplodingCreepers{1.0} [Avoid Exploding Creepers] (AvoidExplodingCreepers-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
BetterFoliage{1.0.8} [Better Foliage] (BetterFoliage-mc1.7-1.0.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
bettervillages{0.4} [Better Villages Mod] (BetterVillages-0.4(1.7.10).jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
BiblioCraft{1.10.2} [BiblioCraft] (BiblioCraft[v1.10.2][MC1.7.10].jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
chococraft{4.1.5} [Clienthax's ChocoCraft] (ChocoCraft-4.1.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
lootablebodies{1.3.3} [DrCyano's Lootable Bodies] (CyanosLootableBodies-1.3.3-backport.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
MoCreatures{6.3.1} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v6.3.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights{1.3.8} [Dynamic Lights] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_onFire{1.0.4} [Dynamic Lights Burning Entity Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_creepers{1.0.4} [Dynamic Lights Creeper Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_dropItems{1.0.8} [Dynamic Lights EntityItem Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_entityClasses{1.0.1} [Dynamic Lights Entity Light Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_mobEquipment{1.0.8} [Dynamic Lights Mob Equipment Light Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_flameArrows{1.0.0} [Dynamic Lights Fiery Arrows Light Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_floodLights{1.0.2} [Dynamic Lights Flood Light] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_otherPlayers{1.0.8} [Dynamic Lights OtherPlayers Light Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
DynamicLights_thePlayer{1.1.4} [Dynamic Lights Player Light Module] (DynamicLights-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
flansmod{4.9.0} [Flan's Mod] (Flans Mod-1.7.10-4.9.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
GardenCore{1.7.10-1.5.4} [Garden Core] (GardenStuff-1.7.10-1.5.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
GardenContainers{1.7.10-1.5.4} [Garden Containers] (GardenStuff-1.7.10-1.5.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
GardenStuff{1.7.10-1.5.4} [Garden Stuff] (GardenStuff-1.7.10-1.5.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
GardenTrees{1.7.10-1.5.4} [Garden Trees] (GardenStuff-1.7.10-1.5.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
aapijc{1.2.4-JC} [JCAnimationAPI] (JurassiCraft-1.3.2-build-125-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
jurassicraft{1.3.2-build-125} [JurassiCraft] (JurassiCraft-1.3.2-build-125-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
JASCompatability{1.1.0} [Just Another Spawner Compatibility Addon] (JustAnotherSpawnerCompatibilityAddon-1.1.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
LunatriusCore{1.1.2.21} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.21-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
malisisdoors{1.7.10-1.4.4} [Malisis' Doors] (malisisdoors-1.7.10-1.4.4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
MouseTweaks{2.4.4} [Mouse Tweaks] (MouseTweaks-2.4.4-mc1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
cfm{3.4.7} [§9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
MSM3{3.0.0d} [More Swords 3] (MSM-SNAP-3.0.0e-For-MC-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
AS_MultiMine{1.4.3} [Multi Mine] (MultiMine-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
MutantCreatures{1.4.8} [Mutant Creatures] (MutantCreatures-1.7.10-1.4.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
plantmegapack{4.15} [Plant Mega Pack] (plantmegapack-4.15-1.7.10-1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Schematica{1.7.5.117} [Schematica] (Schematica-1.7.10-1.7.5.117-universal.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
soundfilters{0.8_for_1.7.X} [Sound Filters] (SoundFilters-0.8_for_1.7.X.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
AS_UpdateCheck{1.1.6} [AtomicStryker Update Check Mod] (UpdateCheckerMod-1.7.10.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
VersionChecker{1.1.8} [Version Checker] (VersionChecker-1.1.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
chunkbase_villageinfo_ssp{2.1} [Village Info (SSP)] (VillageInfoSSP-1.7.10-2.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
wearmc{1.7.10g} [WearMC] (WearMC-Forge-1.7.10g.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
zssaddon{1.7.10-alpha-0.0.1} [Zelda Sword Skills - Addon] (zeldaswordskillsaddon-v0.0.4a.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
JustAnotherSpawner{0.16.18} [Just Another Spawner] (JustAnotherSpawner-0.16.18.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Launched Version: 1.7.10-Forge10.13.2.1340-1.7.10
LWJGL: 2.9.1
OpenGL: Intel 945G GL version 1.4.0 - Build 8.14.10.1930, Intel
GL Caps: Using GL 1.3 multitexturing.
Not using framebuffer objects because OpenGL 1.4 is supported, EXT_blend_func_separate is supported, OpenGL 3.0 is not supported, ARB_framebuffer_object is not supported, and EXT_framebuffer_object is not supported.
Anisotropic filtering is supported and maximum anisotropy is 4.
Shaders are not available because OpenGL 2.1 is not supported, ARB_shader_objects is not supported, ARB_vertex_shader is not supported, and ARB_fragment_shader is not supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: [PresenceFootstepsOfficial.zip]
Current Language: Português (Brasil)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: Off (1)
I clicked 1.8 and the file name was 1.8, but liteloader said it was for 1.7.10 ingame. The 1.5.6 update made it work though.
I was wondering if there is a way to restrict teleportation for players using only the waypoints the individual player creates while using the mod. If I grant players access to /tp they are allowed to tp to other players and have unlimited access to the map, which I am not wanting them access to. I am trying to restrict their ability to teleport to places only they have been in the game, i.e., waypoints.
I'm running an SMP Forge server and using the Server Tools Mod to adjust permissions.
Thank you very much for any help.
voxelmap is a client side mod. Stuff like teleportation relies on things already installed on the server (like /tp). If you know of a plugin that enables teleport-to-voxelmap-waypoint you could use that and set permissions for it, but there is no such thing included with VoxelMap (again, a purely client side mod)
Best you could hope for is for someone to create a server plugin that acts like /tppos but gets its coordinates through a Packet250CustomPayload. If it was via text like most commands, the user could just type in whatever coordinates he wanted (like /tppos). You'd need to accept coordinates through a custom packet, which VoxelMap would need to be programmed to send (based on the coordinates of a selected waypoint). Creating such a plugin is outside the purview of what I want to be doing, but if one were made I might be convinced to have VoxelMap send the requisite packets in case the server is listening
That really wouldn't help you though, as users can create (or edit) waypoints to have any coordinate they want. There's nothing stopping someone from creating a waypoint and giving it coordinates 25000, 64, 25000.
That's what I was afraid of. Thanks for all of your help. I appreciate it.
May I have permission to use this mods?
This is a fantastic mod and I have come to rely on it (maybe too much lol) in my survival worlds. Unfortunately I cannot get it to work with minecraft realms. Latest version of liteloader and voxelmap and MC consistently gives me the "your client is outdated" error. If there is any workaround I would definitely appreciate it.
This works great! I love it!
i was just curious if this is normal. i have the current version of lite loader and voxel map but i keep getting this error spamming thru my console log:
[Client thread/INFO] [LiteLoader]: Calling late init for mod VoxelMap
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Offendor: com/thevoxelbox/voxelmap/c/h.d()V
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Offendor: com/thevoxelbox/voxelmap/c/h.e()V
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
[28/3/2015 12:08:10 PM] [Client thread/WARN] [FML]: =============================================================
it's nothing to worry about. It's just Forge insisting on something being done their way. VoxelMap has no Forge dependency though (it can run without it) so I can't really count on their method being there to route through. No worries, Forge does it for me when it is around. TBH though I don't really even remember where I call that (part of some old debug routine).
new version time once more
1.5.7:
I downloaded liteloaer as the current version then downloaded the mod, but when i downloaded voxel from this site and put it in my mods folder, it said it was for 1.7! Help me out!!!!!!!!!!!!