Increasing chatlog?
-
**Purchase a copy of IDA and you can find down stuff like that , itās how I figured out the ALE formatā¦
You can even run the server in debug mode using that program.**
-
Do you mean the offsets or IDA? For the first one it is quite simple after you got to know how.
You can check out this tut by fox:
http://www.memes.no/88flak/downloads/beta/1.0-1.1_Offsets_Tutorial.txt(If you have any questions or if you need help with something feel free to contact me in one of my IMs ;))
-
**Learning to use IDA will require you to get a reference book on assembly. At first it wonāt be easy at all but it is like any other language, you will get the feel for it after awhile. One nice thing about it is that it will set up links between each routine and also it will expand and comment certain stuff you would never see with a hex editor.
If you are unable to learn assembly, unfortunately it wonāt do you a whole lot of goodā¦ one other thing, it isnāt cheap.**
-
Hex-rays ;D ;D
-
@Bas:
Eh M0tahā¦I have the feeling you created a list by yourself, could you share it with us? ;D
The only other offsets I have indexed are some for the right HUD panel with the weapon controls as part of a project I was working on to adapt the HUD to widescreen monitors.
Those three I posted before werenāt on a list or anything before viper asked if they existed. -
Yeah, there is.
0x50 in freelancer.exe, 0x6a440 = maximum number of characters in multiplayer chat window
May I ask whats the maximum? It seems that the value can be higher then 7F, but when I enter to much letters āat onceā then it doesnt work, isnt able to send the message then.
I have the feeling that it is catched up in a loopā¦However, I reduced to 200/Hex C8, will see if this is working.
-
Ok, best value for maximum number of characters in multiplayer chat window is 7F/127. I am not sure, but I have the feeling that even higher values have an effect, meaning that you can write more letters then. But then there is the āloopā-bug again - meaning you dont come to an end of letters when you are writing a message (just see for yourself ^^)
I also made 2 screenshots to show how muhc it is only enlarged, not too much IMHO (127 instead of 80 letters):
http://www.abload.de/img/screen135k6kc.jpg
http://www.abload.de/img/screen1361b7q.jpg(I am I with EXE hack, SaarlƤnder without EXE hack - Just look for Halloooooo[ā¦])
-
I found both. They were right next to the offset for the max number of lines in the history window :P.
10000i in freelancer.exe, 0x691ca = time in milliseconds chat text is displayed before disappearing 0x20 in freelancer.exe, 0x691cf = maximum number of chat lines displayed at once -1
-
Ty, but I guess he means the numbers of chat lines at the left of the screen (and your value (0x20) seems to be a bit to height for this IMHO ^^)
-
It should be for the chat at the left of the screen. I tested it by setting it to 0x02 and 0x00 and it would only show 3 lines and 1 line respectively. So Iām pretty sure itās right.
EDIT: What may be happening is not all 32 of those lines are actually shown when the chat seems to fill up the entire portion of the left screen section - the size of the actual text box might be smaller.
-
0x20 in freelancer.exe, 0x691cf = maximum number of chat lines displayed at once -1
works but only to reduce chatlinesā¦Yeah, I think the size of the textbox needs to be increased to be able to increase the limit, which requires another offset.
bet other question is there also an value for chatcolor ?
Or other Colors in FL ?The chat colors are controlled server-side. If you have FLHook you can change them with some modifications to the source code in HkCbChat.cpp.