Page 4 of 4

Re: ★ UTChat 23c ★ [updated 20/09/2022]

Posted: Thu Nov 24, 2022 7:36 pm
by Que
The_Cowboy wrote: Wed Nov 23, 2022 2:38 am Howdy fellas!

Nice job with the chat utility. Congratulations for bringing emoji's in standalone mutator (previous I remember was Krato's some League Assault stuff providing functionality).
Now for the real thing, I have been having conversations with admins
Spoiler
about the language barriers that are there (for good or bad is a personal judgement). Which suggests the notion of client-side only functionality

So a few questions
1. Does this mutator work completely on client side install (meaning if server has no affiliation and clients' install shall not interfere with each other). I don't think I have stumbled upon this part in ReadME.
2. If no, then can I code this just for the purpose.
3. Finally, I'd like to add in a language translator which shall query with some web based API for right translation.

It'd be dope to work with ProAsm again after last we worked on was SmartDM (now know as SmartSB or something).
Good ideas 💡

I will attach source code here to this post.
Have a look and see what you can implement.

Re: ★ UTChat 23c ★ [updated 20/09/2022]

Posted: Thu Nov 24, 2022 11:12 pm
by The_Cowboy
Awesome fellas!

Few things to note:
1. I am planning to develop further publicly. Hence the GitHub repository https://github.com/ravimohan1991/ChatDiamond. Heh, let me know about how you feel with the name and all that.
Also the regular thread be:
Spoiler
2. Licensing is most serious thing that I be concerned about. Currently I am going with https://beyondunrealwiki.github.io/page ... cense.html. Let me know your opinions on safe journey ahead

Re: ★ UTChat 23c ★ [updated 20/09/2022]

Posted: Fri Nov 25, 2022 9:21 am
by ProAsm
Hi Cowboy, long time no see :)
Yeah all looks good.

Re: ★ UTChat 23c ★ [updated 20/09/2022]

Posted: Fri Nov 25, 2022 11:03 am
by Que
//UPDATED//

Code: Select all

v23m (v24)
Added bCheckExtendedNick.
Admin string now in WRI.

v23k
Fixed GPF in 436/451 D3D rendering.
Reduced all 512 textures to 256.


v23j
Added additional entered game traps.
Improved start control fire detection.
Removed UTChatHud as HudMutator.

v23h/i
Removed v23g log stuff.
Added [+Bot] and [-Bot]
Added [+Spectator] and [-Spectator]

v23f/g
Added temp UTChatClientLog for [+Player] traps.
Redirected server [+Player] to chatlog.

v23e
Fixed and locked emoji option window.
Fixed other messages color issue.
Capitalized Ready and Starting messages.
Fixed spectator player colors.
Fixed idle frag counter when spectator.

v23d
Fixed team game colors.
Added Emoji menu window.
Removed strip emojis and banner.
Added back client ChatDuration.
Added back client OtherDuration.

v23c
Fixed several Accessed Nones in UTChatHud
Update in First Post.

Re: ★ UTChat 25 ★ [updated 26/01/2023]

Posted: Wed Jan 25, 2023 9:25 pm
by Que
//UPDATED UTC25//

Code: Select all

UTChat - by ProAsm and No0ne - 2021/22/23
-----------------------------------------

UTChat Changelog
----------------

v24g
Fixed bug with kill messages.

v24f
Added check for SSB player reflag.
Fixed no flag X position in chat.

v24e
Added client variables with no version dependencies.
Changed emoji thumbs down from :- to :<
Added fixed clientside variables.
Added NewFaceless texture option.
Added flag options for chat, chatlog and players.
Added RemoveAllEmojis in ini file only.
See first Post for Latest download links and information

Re: ★ UTChat 25 ★ [updated 26/01/2023]

Posted: Fri Jan 27, 2023 3:09 am
by [rev]rato.skt
nice i go teste this!

Re: ★ UTChat 25 ★ [updated 26/01/2023]

Posted: Sat Jan 28, 2023 3:28 am
by [rev]rato.skt
hey man cold add in next version this options

ServerLanCountryFlag=CountryFlags32e.br ???

Re: ★ UTChat 26★ [updated 14/04/2023]

Posted: Thu Apr 13, 2023 10:32 pm
by Que
Updated!!

Code: Select all

v25d
Added bAddServerToFavs option at game end.
Added bUseSiegeHUD for Siege Stats.
Added small chatlog spacing option.
Fixed null player mute displays.
added LightMode for Chatlog

v25c
Added LanCountryFlag.
Fixed clientside Player Mute.
Added serverside Admin Player Mute.
viewtopic.php?t=14356

Re: ★ UTChat 27★ [updated 17/04/2023]

Posted: Mon Apr 17, 2023 7:07 am
by Que
Updated!!

Code: Select all

v27
Fixed white player text in chatlog.
Fixed bAddServerToFavs.

v26
Added bAddServerToFavs option at game end.
Added bUseSiegeHUD for Siege Stats.
Added small chatlog spacing option.
Fixed null player mute displays.
Added LanCountryFlag.
Fixed clientside Player Mute.
Added serverside Admin Player Mute.
Fixed flag displays in 436 and 451.
Added name[+Player] trap when login.
Increased UTChatFlagCfg to 50.
Trapped many accessed nones.

Re: ★ UTChat 27★ [updated 17/04/2023]

Posted: Wed May 17, 2023 4:32 am
by The_Cowboy
Howdy Que!

I am trying to clean up the chat textures (emojis), for my Chat Diamond mod, in the sense that when they appear in the chat window, the appear like so

Image

with black edges. I'd want to introduce transparency so that black edges may disappear.

I have tried using masked import in UED and still they appear with black edges. How did you discard that for UTChat?
Image

Re: ★ UTChat 27★ [updated 17/04/2023]

Posted: Wed May 17, 2023 8:24 am
by ProAsm
The_Cowboy wrote: Wed May 17, 2023 4:32 am Howdy Que!
with black edges. I'd want to introduce transparency so that black edges may disappear.
I have tried using masked import in UED and still they appear with black edges. How did you discard that for UTChat?
Strange, I have never used UED much :)

To get rid of the black background.
Canvas.Style = ERenderStyle.STY_Translucent; // most important
C.DrawIcon( Texture'FaceImage', 1.0 );
And if that does not work try:
Canvas.DrawTile(FaceImage, ChatBoxHeight, ChatBoxHeight, 0.0, 0.0, FaceImage.uSize, FaceImage.vSize);

Re: ★ UTChat 27★ [updated 17/04/2023]

Posted: Wed May 17, 2023 2:25 pm
by The_Cowboy
You are a diamond mate!

Thanks

Re: ★ UTChat 27★ [updated 17/04/2023]

Posted: Thu Aug 10, 2023 12:24 pm
by asosed
UTCHAT 28
1. Fixed no flag icon.
2. Added Dim Border option.
3. Added Ip detection in chat.
4. Added AllowExtended for extended characters.
5. Re-Added the chat window size saving.
6. Improved banner coloring.
7. Fixed admin security in windowconfigs.
8. Updated Auto font sizes to 4k.
9. Updated flag scale to 4k.
10. Added disable font sizing.
11. Added IGPlus xhair detection.
12. Fixed several accessed nones.

Re: ★ UTChat 28★

Posted: Fri Aug 11, 2023 8:56 am
by Que
thanks mate added to first post.

Re: ★ UTChat 30★

Posted: Tue Apr 16, 2024 8:06 pm
by Que
Update first post

Code: Select all

Removed Newfaceless option.
Added AltFaceless with menu option.
Fixed message leaks in chat.
Added bTestBadNicks.
Added :- for new Smiley.
Added faces now totally transparent if set.
Fixed single character nick colors.