Download
(3Kb)
Download
Updated: 09-02-18 03:35 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:09-02-18 03:35 AM
Created:10-16-10 02:08 PM
Downloads:38,163
Favorites:104
MD5:

rChat  Popular! (More than 5000 hits)

Version: 800.20180901
by: zork [More]


Intro

rChat adjusts the appearance of the default chat frame.
Git
https://github.com/zorker/rothui/tre...r/wow8.0/rChat

Optional Files (0)


Post A Reply Comment Options
Unread 11-23-13, 05:40 AM  
Lemon
A Kobold Labourer

Forum posts: 0
File comments: 12
Uploads: 0
Don't know why, but i can't copy links anymore.
Report comment to moderator  
Reply With Quote
Unread 11-23-13, 06:18 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
@Lemon
Sometimes the editbox bugs out. Just type something in that chat window and it should be good.
@ComputerNerd+Poxus.
Just open rChat/core.lua and search for "SetFont". Find sth like
Lua Code:
  1. ChatFontNormal:SetFont(STANDARD_TEXT_FONT, 12, "THINOUTLINE")
Make it
Lua Code:
  1. ChatFontNormal:SetFont(STANDARD_TEXT_FONT, 12)
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 11-25-13, 07:54 PM  
Politig
A Chromatic Dragonspawn
AddOn Compiler - Click to view compilations

Forum posts: 176
File comments: 396
Uploads: 1
Each time I open my talents menu or close my quest log, I get a message saying "rChat has been blocked from something only the Blizzard UI can do" or something similar to that. Not sure what's going on here.
Report comment to moderator  
Reply With Quote
Unread 11-26-13, 02:11 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
The word you are looking for is taint.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 12-14-13, 11:11 AM  
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 111
File comments: 74
Uploads: 3
Hey zork, i have a separate chat window that i want text to be on the right side of the frame instead of the left. i was told that this function
Code:
ChatFrame#:SetJustifyH("RIGHT")
will do what i need, but i was wondering where and how i would put this into the code.
Report comment to moderator  
Reply With Quote
Unread 12-14-13, 11:41 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally Posted by Mirrikh
Hey zork, i have a separate chat window that i want text to be on the right side of the frame instead of the left. i was told that this function
Code:
ChatFrame#:SetJustifyH("RIGHT")
will do what i need, but i was wondering where and how i would put this into the code.
Probably somewhere around http://code.google.com/p/rothui/sour...re/core.lua#65
So it becomes
Lua Code:
  1. local name = self:GetName()
  2. if name == "ChatFrame3" then
  3.   self:SetJustifyH("RIGHT")
  4. end
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 12-14-13, 03:56 PM  
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 111
File comments: 74
Uploads: 3
worked perfectly, thanks a bunch.
Report comment to moderator  
Reply With Quote
Unread 01-11-14, 09:31 AM  
Maxen
A Fallenroot Satyr

Forum posts: 23
File comments: 235
Uploads: 0
Hey ! Is there a copy text/chat function that I don't know of?
Report comment to moderator  
Reply With Quote
Unread 01-11-14, 11:50 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
No there is not.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 01-28-14, 08:14 AM  
riph
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 7
File comments: 8
Uploads: 1
Is there anyway to change the colour of an OUTLINE on a font?
Report comment to moderator  
Reply With Quote
Unread 01-29-14, 01:18 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally Posted by riph
Is there anyway to change the colour of an OUTLINE on a font?
Not sure. You can try to adjust the shadowcolor.
http://wowprogramming.com/docs/widge...SetShadowColor
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 02-17-14, 02:28 PM  
Sylen
A Wyrmkin Dreamwalker
AddOn Author - Click to view AddOns

Forum posts: 50
File comments: 65
Uploads: 4
Is there a way so an IP address can be copied with the url copy? Sucks typing it down everytime you want to join a teamspeak of someone.
Report comment to moderator  
Reply With Quote
Unread 02-18-14, 01:54 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally Posted by Sylen
Is there a way so an IP address can be copied with the url copy? Sucks typing it down everytime you want to join a teamspeak of someone.
Actually that should work perfectly. Because that is what I do all the time. The IP will be colored in a blue link. Once you click that link it is copied and focued in the editbox. All you have to do is copy it to the clipboard. The conditions for those IPs can be seen here:
http://code.google.com/p/rothui/sour...urlcopy.lua#27
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 02-18-14 at 01:56 AM.
Report comment to moderator  
Reply With Quote
Unread 10-16-14, 09:34 AM  
maitias
A Kobold Labourer

Forum posts: 1
File comments: 13
Uploads: 0
Any chance this specific addon will be updated for 6.x?

Thanks!
Report comment to moderator  
Reply With Quote
Unread 10-16-14, 09:43 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
The addon has not changed. All that needs to be changed is the TOC number. I will upload a version with adjusted toc number by the weekend. For now you could just use the current version and enable "load out of date addons".
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: