Add pretty messjage

This commit is contained in:
MSWS
2024-12-26 07:45:43 -08:00
parent 2a027b62b6
commit 6d584a846a
4 changed files with 36 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
using CounterStrikeSharp.API.Core;
using Jailbreak.Formatting.Base;
using Jailbreak.Formatting.Views.LastRequest;
namespace Jailbreak.English.LastRequest;
public class GunTossLocale : LastRequestLocale, ILRGunTossLocale {
public IView PlayerThrewGunDistance(CCSPlayerController player, float dist) {
return new SimpleView {
{ PREFIX, player, "threw their gun ", dist, " units." }
};
}
}