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

So I tried mimicing the beacon code.  I know the ticker variable is working but the potion effects are not applying

is there anything wrong with my code?

Forgive me i am new to modding

public PolCanEntity()  {
double ranges = 6;

if(ticker >= 23 ) {

int pollutionlevel = 100;
AxisAlignedBB axis = AxisAlignedBB.getBoundingBox((double)xCoord-ranges, (double)yCoord, (double)zCoord, (double)xCoord + ranges, (double)yCoord + ranges, (double)zCoord + ranges);

List list = this.worldObj.getEntitiesWithinAABB(EntityPlayer.class,axis);
    Iterator ilikepie = list.iterator();
    EntityPlayer player;
    
    if(pollutionlevel >=100 && ilikepie.hasNext()) {
    	
    	player = (EntityPlayer)ilikepie.next();
	player.addPotionEffect(new PotionEffect(17,1000,1,true));

	ticker = 0;

  • Author

tried changing the if statement to a while statement, getting a null pointer expection

Is that code in the constructor?

 

The way I did potion effects for players with blocks was using an event handler class and subscribing to LivingUpdateEvent (I think there might be a PlayerUpdateEvent but I'm not sure).

 

Then make sure the entity from the event is an instance of EntityPlayer, and if so, check if any blocks nearby are the block you're looking for, then just apply the potion effect to the player.

 

I'm pretty sure if all you want to do is add a potion effect then Events are the best way to handle it. Otherwise if you want to do more I think you can use the updateEntity method in a TileEntity.

BEFORE ASKING FOR HELP READ THE EAQ!

 

I'll help if I can. Apologies if I do something obviously stupid. :D

 

If you don't know basic Java yet, go and follow these tutorials.

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.