Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hey,

I want to create a potion effect. When you walk on blocks, there is a 1% chance that it'll change into another block.

Did someone create something similar to this or can help me?

Thanks :)

Steps to produce:

 

Make a Potion Effect.

Make an event handler.

> Check if the potion effect is active.

> Use doubles to make it 1%.

> Get block underneath player.

> Change block to _____.

 

  • Author

How do I check if the player has this potion effect and which block is underneath him?

 

EventListener:

package MyMod;

import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.TickEvent;

public class MyModEventListener
{
@SubscribeEvent
public void onTick(TickEvent.ClientTickEvent event){

}
}

 

PotionHelper:

package MyMod.handler;

import java.util.HashMap;

import net.minecraft.potion.PotionHelper;
import MyMod.items.potion.MyModPotion;

public class MyModPotionHelper extends PotionHelper {

    private static final HashMap potionRequirements = new HashMap();
public static final String effectMyMod;

static
{
	potionRequirements.put(Integer.valueOf(MyModPotion.potionMyMod.getId()), "0 & 1 & !2 &3 &3+6");
	effectMyMod = "";
}
}

 

MyModPotion:

package MyMod.items.potion;

import net.minecraft.potion.Potion;

public class MyModPotion extends Potion {

public static final MyModPotion potionMyMod= (MyModPotion) (new MyModPotion(25, false, 7589137*16).setPotionName("potion.potionMyMod"));

protected MyModPotion(int par1, boolean par2, int par3) {
	super(par1, par2, par3);

}
}

One, by not using TickEvent.ClientTickEvent as you should be checking server side.

Two, by putting code into that function.

 

(Oh, I'm sorry, did you mean to ask "how do I get a reference to the world here?" Well, if you're using the right tick type, you should be passed a reference to the player, which as an entity, contains a reference to the world)

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author
Two, by putting code into that function.

And could you give me some hints?

I haven't ever done something like this..

Thank you! :D

Anyone else?

 

Are there any mods that use similar potion effect? IF so, download them and decompile the code. I use JAD. But that code will contain a vanilla language, so you might missunderstand something.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.