Jump to content

[KINDA SOLVED] Any event on "Exploring a new zone" ?


yetanothermodder

Recommended Posts

Hi guys,

 

I'm new to minecraft modding and i was wondering if there is an event triggered when  a player enter an area (some chunks in mc vocabulary i guess) that he never went before.

I want to know when a player is exploring a new zone.

 

Ty :)

 

(btw it's for forge version 1.7.10 and 1.8.9 as my mod is currently available for these 2 versions)

Link to comment
Share on other sites

Nope. But that would be easy to do.

 

Assign IEEP or Capability to EntityPlayer and @SubscribeEvent to PlayerTickEvent. Pick one of event.phase (in your case START would be better). Check position of player, get X/Y of chunk and check if entry is in Player's IEEP/Capability.

You could save them as simple int[][].

 

Saving that to NBT is matter of for (map) { setInteger(Key.toString(), Value) }, reading with nbt.getKeySet() - and reading by key->value.

 

Note:

1. Not sure method naming.

2. Link: http://mcforge.readthedocs.org/en/latest/datastorage/capabilities/

3. I belive there is EntityJoinChunk event, but I might be mistaken (lookup forge event packages).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Ty dude, might be useful; though I would like to know when a player explore for the  very first time an area.

ie your solution won't work if one installs the mod in an already existing game; as it will detect all parts of the map u already know as new for one time...

but ty for the tip.

Maybe if no such event exists, i can read files within region folder to check new zone generation ?

 

But i guess it might be complicated as if i can assume a player is exploring if a new file appears in one of this folder; i can't confirm he isn't exploring if no new file appears (as files cover big area and can be partialy explored)

Link to comment
Share on other sites

Ty dude, might be useful; though I would like to know when a player explore for the  very first time an area.

ie your solution won't work if one installs the mod in an already existing game; as it will detect all parts of the map u already know as new for one time...

 

What you want is not possible.

 

1. Mod can only work from time when it was installed.

2. You don't know who explored alredy generated terrain, so analizing dimension data (world's NBT) is not a way to go.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

This mod operates on client side so its region folder will only contains regions HE explored. When u join a server your client doesn't download the whole world map (i'm pretty sure of that), but just the region you're in and then the next one as u enter it...

So there must be an event (maybe a private or protected one) when the client needs new world data...

At least I could check files as i said...

 

Anyway, right now I'm workin on a client side single player mod. And if I want it to work on server then i might have to store data; but until then files generated by minecraft (or an appropriate event) should do the trick... I just need to know when region files are modified (and what exactly they contain (for exemple only blocks, or blocks+entity....) so i can evaluate depending on the changes volume if it's just some enderman removing a block within the region or a real world generation from the seed.))

 

Btw if by :

1. Mod can only work from time when it was installed.

you mean soft only work once installed, well it's a tautology so i agree ;)

but if you mean a mod can't produce retroactive effects; i don't. cause one can surely create a mod which will turn all your coal ore (even already generated one) into gold ore for exemple...

Anyway from a server point of view you were right. U just assumed a little fast I was moddin for server side (but my bad for the lack of precision ^^)

Link to comment
Share on other sites

Ok I've just watched the region file structure and seems they got all I need.. So i will mark this as [KINDA SOLVED] ;)

Sadly checkin the last modification time won't be enough  as they store both entities and blocks :(..

So maybe i will just consider the player is explorin when a new region file is generated (which if less occurate will also be less time consumin as i plan to check once every 20 sec or so... I don't need really precise trigger)

if anyone comes out with a better solution (an event in my dreams xD) i would be happy to learn it :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Instale el mod en mi servidor y este se queda iniciando por horas, en la consola me habla de algo de permisos y trate de seguir la ruta que me da pero no existe.   [13:05:32 INFO]: CustomNPC Permissions available: [13:05:32 INFO]: customnpcs.edit.blocks [13:05:32 INFO]: customnpcs.edit.villager [13:05:32 INFO]: customnpcs.global.bank [13:05:32 INFO]: customnpcs.global.dialog [13:05:32 INFO]: customnpcs.global.faction [13:05:32 INFO]: customnpcs.global.linked [13:05:32 INFO]: customnpcs.global.naturalspawn [13:05:32 INFO]: customnpcs.global.playerdata [13:05:32 INFO]: customnpcs.global.quest [13:05:32 INFO]: customnpcs.global.recipe [13:05:32 INFO]: customnpcs.global.transport [13:05:32 INFO]: customnpcs.npc.advanced [13:05:32 INFO]: customnpcs.npc.ai [13:05:32 INFO]: customnpcs.npc.clone [13:05:32 INFO]: customnpcs.npc.create [13:05:32 INFO]: customnpcs.npc.delete [13:05:32 INFO]: customnpcs.npc.display [13:05:32 INFO]: customnpcs.npc.freeze [13:05:32 INFO]: customnpcs.npc.gui [13:05:32 INFO]: customnpcs.npc.inventory [13:05:32 INFO]: customnpcs.npc.reset [13:05:32 INFO]: customnpcs.npc.stats [13:05:32 INFO]: customnpcs.scenes [13:05:32 INFO]: customnpcs.soulstone.all [13:05:32 INFO]: customnpcs.spawner.create [13:05:32 INFO]: customnpcs.spawner.mob [13:05:32 INFO]: customnpcs.tool.mounter [13:05:32 INFO]: customnpcs.tool.nbtbook [13:05:32 INFO]: customnpcs.tool.pather [13:05:32 INFO]: customnpcs.tool.scripter
    • I have created a very simple mod that is just supposed to send a message to a player when they join. Upon adding it to a server (that has other mods on it), the following crash message appears: [12:13:01] [main/ERROR] [minecraft/Main]: Failed to start the minecraft server net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [         Epic Mod (epicmod) has failed to load correctly §7java.lang.NoSuchMethodException: net.ed.epicmod.EpicMod.<init>() ]         at net.minecraftforge.fml.ModLoader.waitForTransition(ModLoader.java:243) ~[fmlcore-1.19.2-43.2.14.jar%23548!/:?] {}         at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$24(ModLoader.java:208) ~[fmlcore-1.19.2-43.2.14.jar%23548!/:?] {}         at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}         at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:208) ~[fmlcore-1.19.2-43.2.14.jar%23548!/:?] {}         at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$14(ModLoader.java:185) ~[fmlcore-1.19.2-43.2.14.jar%23548!/:?] {}         at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin,re:computing_frames}         at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:185) ~[fmlcore-1.19.2-43.2.14.jar%23548!/:?] {}         at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:32) ~[forge-1.19.2-43.2.14-universal.jar%23552!/:?] {re:classloading}         at net.minecraft.server.Main.main(Main.java:113) ~[server-1.19.2-20220805.130853-srg.jar%23547!/:?] {re:classloading,re:mixin,pl:mixin:A}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}         at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}         at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.2.14.jar%2367!/:?] {}         at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] {}         at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {} Why could this be? I have tried using the mod on another forge server with only this mod installed and it works there. Is my mod somehow interfering with other mods? MC version is 1.19.2
    • how to make animated doors?, maybe geckolib, but i don't know how to code it?
    • For crash 1, set max-tick-time to -1 in your server.properties Crash 2 shows a conflict or incompatibility between LuckPerms and the mod boh-0.0.6.1-forge-1.20.1_2.jar
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.