ffxivlib icon indicating copy to clipboard operation
ffxivlib copied to clipboard

Hook FFXIV I/O to send commands without going through the user UI

Open toz opened this issue 11 years ago • 5 comments

Hello. Do you have plans to add a send chat feature? because I want to make a utility such as DBM. I can analyze boss pattern from the chat log, but I can't notifying to party. I want to tell the situation(ex: boss skill timer) to the party. sorry for poor english :(

toz avatar Nov 30 '13 22:11 toz

Sorry I do not exactly understand, do you mean like OnEvent?

E.g. Twintania uses Death Sentence -> Send "/p Death Sentence used"

sruon avatar Dec 01 '13 17:12 sruon

no, I mean send text to party chat.

SendKeyInput sk = SendKeyInput.GetInstance(); while(true) {

sk.SendReturnKey();
sk.ConvertTextToInput("/echo test message");
sk.SendReturnKey();
Thread.Sleep(3000);

}

This code works very well if I don't control my character. However, Problem occurs when I control my character. so I don't want to interrupt my keyboard input when send message to party chat. This is what I mean.

toz avatar Dec 02 '13 08:12 toz

I understand what you mean. We need to hook into XIV IO functions for that and I haven't had much success yet. This is definitly a must have feature I am trying to include but I have absolutely no ETA for that.

sruon avatar Dec 02 '13 15:12 sruon

I have renamed the issue. I'll keep you posted on it.

sruon avatar Dec 03 '13 20:12 sruon

Got this semi working for movement, need to get it working for chat.

sruon avatar Dec 30 '13 13:12 sruon