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'm trying to create a custom death message for the guns I'm adding to my mod. It will print a message like

Bob was shot by Bill using AK12

And I'm using the func_151519_b(EntityLivingBase) function in the DamageSource class to create my death message. However, whenever I test it on a server, it does not translate or format the string at all, and just prints:

death.attack.aw.bullet

 

Does anyone know what's happening? Do I need to use vanilla code rather than making a custom death source?

Here's my DamageSource class:

package assets.aw.common.utils;

import net.minecraft.client.resources.I18n;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatComponentTranslation;
import net.minecraft.util.EntityDamageSourceIndirect;
import net.minecraft.util.IChatComponent;
import net.minecraft.util.StatCollector;

public class DamageSourceBullet extends EntityDamageSourceIndirect {

private String gun = "item.aw.gun.unknown";

public DamageSourceBullet(Entity attacker, Entity attackee, String gun) {

	super("death.attack.aw.bullet", attacker, attackee);
	this.gun = gun;

}

public IChatComponent func_151519_b(EntityLivingBase p_151519_1_) {

	String attackerName = this.getSourceOfDamage().getCommandSenderName();
	String attackeeName = this.getEntity().getCommandSenderName();
	String gunName = StatCollector.translateToLocal(gun);

	return new ChatComponentTranslation("death.attack.aw.bullet", attackeeName, attackerName, gunName);

}

}

 

Thanks,

Romejanic

Romejanic

 

Creator of Witch Hats, Explosive Chickens and Battlefield!

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.