Jump to content

1.12.2 Giving a Player a Potion Effect at Spawn


guyWITH2forks

Recommended Posts

Hey guys, I need some help with a portion of my mod.

I am trying to build a sort of moon dimension that mimics being in space. What I wasn't to do to simulate not being able to breath in space is to have the player automatically poisoned if when they spawn into the world. My custom armor (Space suits) will then negate this effect for a duration. How do I go about adding in the poison effect at spawn to my custom Dimension/Biome?

Any help would be appreciated, and if you have examples, the more the merrier.

Cheers

Link to comment
Share on other sites

i would start with 

 

Quote

PlayerEvent.PlayerChangedDimensionEvent if you want to check if he went to your dim.
  

 

 

Quote

Or just create a TickHandler on the server which checks the biome of each player.

 

player.world.getBiome(new BlockPos(playerpos)).equals(YOURBIOM));

          

 player.world.getBiome(new BlockPos(playerpos)).getBiomeName();

 

 

 

Edited by NextInima
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



×
×
  • Create New...

Important Information

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