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.

The method func_178845_a() is undefined for the type loadedPlayer

Featured Replies

Posted

Now that i'm using 1.16 it still gives me errors with the func_

note: I'm not a professional

package com.example.examplemod;

import java.util.Collection;

import net.minecraft.client.Minecraft;
import net.minecraft.client.network.NetworkPlayerInfo;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

@Mod(modid = "PartyAll", name = "PartyAll", version = "1.0", acceptedMinecraftVersions = "[1.16.X]")
public class ExampleMod extends CommandBase {
  @EventHandler
  public void init(FMLPostInitializationEvent event) {
    MinecraftForge.EVENT_BUS.register(this);
    ClientCommandHandler.instance.func_71560_a((ICommand)this);
  }
  
  public int func_82362_a() {
    return 0;
  }
  
  public String func_71517_b() {
    return "pall";
  }
  
  public String func_71518_a(ICommandSender sender) {
    return null;
  }
  
  public void func_71515_b(ICommandSender sender, String[] args) throws CommandException {
    (new Thread(() -> myRun(sender))).start();
  }
  
  public void myRun(ICommandSender sender) {
    Collection<NetworkPlayerInfo> playersC = Minecraft.func_71410_x().func_147114_u().func_175106_d();
    playersC.forEach(loadedPlayer -> {
          String loadedPlayerName = loadedPlayer.func_178845_a().getName();
          (Minecraft.func_71410_x()).field_71439_g.func_71165_d("/p " + loadedPlayerName);
          try {
            Thread.sleep(150L);
          } catch (InterruptedException e) {
            e.printStackTrace();
          } 
        });
  }

@Override
public String getCommandName() {
    // TODO Auto-generated method stub
    return null;
}

@Override
public String getCommandUsage(ICommandSender sender) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void processCommand(ICommandSender sender, String[] args) throws CommandException {
    // TODO Auto-generated method stub
    
}
}
 

37 minutes ago, AngelNour said:

package com.example.examplemod;

import java.util.Collection;

import net.minecraft.client.Minecraft;
import net.minecraft.client.network.NetworkPlayerInfo;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

@Mod(modid = "PartyAll", name = "PartyAll", version = "1.0", acceptedMinecraftVersions = "[1.16.X]")
public class ExampleMod extends CommandBase {
  @EventHandler
  public void init(FMLPostInitializationEvent event) {
    MinecraftForge.EVENT_BUS.register(this);
    ClientCommandHandler.instance.func_71560_a((ICommand)this);
  }
  
  public int func_82362_a() {
    return 0;
  }
  
  public String func_71517_b() {
    return "pall";
  }
  
  public String func_71518_a(ICommandSender sender) {
    return null;
  }
  
  public void func_71515_b(ICommandSender sender, String[] args) throws CommandException {
    (new Thread(() -> myRun(sender))).start();
  }
  
  public void myRun(ICommandSender sender) {
    Collection<NetworkPlayerInfo> playersC = Minecraft.func_71410_x().func_147114_u().func_175106_d();
    playersC.forEach(loadedPlayer -> {
          String loadedPlayerName = loadedPlayer.func_178845_a().getName();
          (Minecraft.func_71410_x()).field_71439_g.func_71165_d("/p " + loadedPlayerName);
          try {
            Thread.sleep(150L);
          } catch (InterruptedException e) {
            e.printStackTrace();
          } 
        });
  }

@Override
public String getCommandName() {
    // TODO Auto-generated method stub
    return null;
}

@Override
public String getCommandUsage(ICommandSender sender) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void processCommand(ICommandSender sender, String[] args) throws CommandException {
    // TODO Auto-generated method stub
    
}
}
 

The method has probably been remapped to something else

so I have done nothing wrong by the coding itself, it's just the understanding of mojang

23 hours ago, AngelNour said:

Now that i'm using 1.16

 

23 hours ago, AngelNour said:

@Mod(modid = "PartyAll", name = "PartyAll", version = "1.0", acceptedMinecraftVersions = "[1.16.X]")

 

23 hours ago, AngelNour said:

public void init(FMLPostInitializationEvent event)

dont lie plz

Guest
This topic is now closed to further replies.

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.