Jump to content

Set fly to true


NqwSqw

Recommended Posts

Hi,

I have a problem with my code, when I set fly on it make a little effect of sprint and I can't fly.

 

Can anyone help me ?

 public class FL extends a.b.c.MDL
/*     */ {
/*     */   private NumberValue speed;
/*     */   
/*     */   public FL()
/*     */   {
/*  29 */     super("Air", 0, a.b.c.MDL.Category.B);
			  this.speed = new NumberValue("Speed", 2.0D, 1.0D, 3.0D);
			  //addValue(this.speed);

    		}
			@Override
			public void onEnable() {
				Wrapper.getPlayer().capabilities.isFlying = true;
				//MovementUtils.setSpeed(speed.getValue() / 10);
			}

			@Override
			public void onDisable() {
				Wrapper.getPlayer().capabilities.isFlying = false;

			}
		}	

 

Link to comment
Share on other sites

2 hours ago, NqwSqw said:

Wrapper.getPlayer().capabilities.isFlying = true;

isFlying != can fly. You need to set allowFlying to true.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

9 hours ago, NqwSqw said:

public class FL extends a.b.c.MDL

Jaysus christ what on earth is this?

Are you jar modding?

Edited by Draco18s
  • Confused 1

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.

Link to comment
Share on other sites

On 8/24/2018 at 11:14 AM, diesieben07 said:

What in the world is that code?

You need to set isFlying to true and then call EntityPlayer#sendPlayerAbilities. On the client this will only work if the player is actually allowed to fly (creative mode, etc.).

There is a way to fly without permission ? 

Link to comment
Share on other sites

18 minutes ago, NqwSqw said:

There is a way to fly without permission

As long as the server says no you cant fly, then you can't fly. Instead of setting EntityPlayer#capabilities.isFlying=true try EntityPlayer#capabilities.allowFlying=true and then call EntityPlayer#sendPlayerAbilities if you have changed it on the client.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

47 minutes ago, Animefan8888 said:

As long as the server says no you cant fly, then you can't fly. Instead of setting EntityPlayer#capabilities.isFlying=true try EntityPlayer#capabilities.allowFlying=true and then call EntityPlayer#sendPlayerAbilities if you have changed it on the client.

Okey 

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.