Search found 22 matches

by Wohoo
Sun Oct 05, 2014 1:57 pm
Forum: General Help
Topic: [Chat feature] Reverse order in chat completion
Replies: 6
Views: 2260

Re: [Chat feature] Reverse order in chat completion

I think it is possible, something like:

Code: Select all

if(Event.m_Flags&IInput::FLAG_PRESS && Event.m_Key == KEY_LSHIFT)
{
	completion_order_positive = false;
}
else if(Event.m_Flags&IInput::FLAG_RELEASE && Event.m_Key == KEY_LSHIFT)
{
	completion_order_positive = true;
}
I'll try...
by Wohoo
Sat Oct 04, 2014 8:58 pm
Forum: General Help
Topic: [Chat feature] Reverse order in chat completion
Replies: 6
Views: 2260

[Chat feature] Reverse order in chat completion

Hi, I found that client miss this important feature. I know that I can look for name of other players pressing TAB in chat, but if I press TAB once more it's not possible go in reverse order. In many games it is possible just pressing SHIFT+TAB. It could be very usefull when up to 64 people are conn...