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

Hello,

I've got this code to suck XP Orbs to a block and increase a Variable when they are touching the block.

 

My Code:

      //Get EntityXPOrb.class within AABB
      AxisAlignedBB axisalignedbb = AxisAlignedBB.getBoundingBox(this.xCoord-radius, this.yCoord-radius, this.zCoord-radius, this.xCoord+radius, this.yCoord+radius, this.zCoord+radius);
      entityList = this.worldObj.getEntitiesWithinAABB(EntityXPOrb.class, axisalignedbb);
        Iterator iterator = entityList.iterator();
        EntityXPOrb entityxporb;
        while (iterator.hasNext()) {
           //Calculate Movement
           entityxporb = (EntityXPOrb)iterator.next();
           double d1 = (this.xCoord + 0.5D - entityxporb.posX) / 8.0D;
           double d2 = (this.yCoord + 0.5D - entityxporb.posY) / 8.0D;
           double d3 = (this.zCoord + 0.5D - entityxporb.posZ) / 8.0D;
           double d4 = Math.sqrt(d1 * d1 + d2 * d2 + d3 * d3);
           double d5 = 1.0D - d4;
           if (entityxporb.xpOrbAge > 20) {
              if (d4 < 0.1) {
                 System.out.println(entityList.size());
                 //Kill XPOrb / increase XP count
                 xpCount++;
                 entityxporb.setDead();
                 System.out.println(this.xpCount);
              }
              if (d5 > 0.0D)
              {
                 //Apply Movement
                 d5 *= d5;
                 entityxporb.motionX += d1 / d4 * d5 * 0.1D;
                 entityxporb.motionY += d2 / d4 * d5 * 0.1D;
                 entityxporb.motionZ += d3 / d4 * d5 * 0.1D;
              }
              
           }
           
        }
        
   }

 

This should increase the XP Count by one whenever any orb touches the block. But it seems to be doing it twice on the server and also on the client.

For testing I added a line which should print the current value whenever this happens and this is what I got:  (Note that the XP count was 0 before)


2013-05-20 23:23:55 [iNFO] [sTDOUT] 1

2013-05-20 23:23:55 [iNFO] [sTDOUT] 2

2013-05-20 23:23:55 [iNFO] [sTDOUT] 1

2013-05-20 23:23:55 [iNFO] [sTDOUT] 2


How can I prevent this from happening?

 

Thanks for any help  :D

Busti

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

  • Author

Could somebody please help me i've been sitting in front of this for ages now.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

  • Author

When i do it only on the server i dont get a graphic effect which I deleted from the code in this post.

I need to spawn an entity when the orb got killed.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

  • Author

I think you misunderstood me. My problem is That the code is called twice on both sides. If I would only call it on the Server it would also do It twice but only on the server.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

  • Author
if (this.worldobj.isRemote) {
    xpCount++;
}

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

if (this.worldobj.isRemote) {
    xpCount++;
}

 

isRemote returns true on the CLIENT

 

Hence:

 

You are probably doing it on client and server. Only do it serverside (world.isRemote == false).

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.

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.