[WIP] Get SRO Source Code - by re-writing it

06/25/2019 16:29 concucu#61
im trying

Quote:
Originally Posted by chipno0p View Post
A simple way to solve this is copy the csdint from Vc100 or other to vc80 and reload the project
full error

Quote:
Originally Posted by chipno0p View Post
A simple way to solve this is copy the csdint from Vc100 or other to vc80 and reload the project
Quote:
Originally Posted by florian0 View Post
Networking support is not added yet.

Do you have any error message regarding cstdint? I don't have any issues with includes.
please add this
06/25/2019 17:23 chipno0p#62
Quote:
Originally Posted by concucu View Post
im trying



full error





please add this
well I added into this directory and it worked
Microsoft Visual Studio 8\VC\include\
06/25/2019 19:24 #HB#63
Quote:
Originally Posted by concucu View Post
please add this
Why don't you do it on your own?!
06/25/2019 19:27 concucu#64
Quote:
Originally Posted by #HB View Post
Why don't you do it on your own?!
because im not pro coder, im tried for 2 months ago, if I could do it, I would not ask
06/28/2019 22:31 florian0#65
Quote:
Originally Posted by concucu View Post
please add this
Quote:
Originally Posted by concucu View Post
because im not pro coder, im tried for 2 months ago, if I could do it, I would not ask
That's okay. I've been asked to add networking support quite a few times and it is on my personal roadmap already. I just couldn't gather enough motivation to make a proper implementation. Networking itself is already working (see my QuickStart release), It just doesn't have a suitable implementation for general purpose use, yet.
07/19/2019 17:50 9dhoanglong2017#66
I need to write down the game 9dragons muon instead of a delicious game in the game, with someone who can travel inbox via my facebook [Only registered and activated users can see links. Click Here To Register...]
08/03/2019 12:09 davarcı#67
I think i try everything for working this function void PrintSystemMessage(eLogType level, wchar_t* str); but not working :( what i should do?
08/03/2019 12:23 florian0#68
Quote:
Originally Posted by davarcı View Post
I think i try everything for working this function void PrintSystemMessage(eLogType level, wchar_t* str); but not working :( what i should do?
Code:
g_pCGInterface->PrintSystemMessage(NONE, L"Hello World!");
But since there is no implementation of PrintSystemMessage, you'll need to add that aswell. Address is 0x007781B0. Since the parameter-list is known, you might wanna try to reconstruct it yourself first. You might wanna make str const since it is not modified by the function.

08/03/2019 12:39 davarcı#69
C2059 syntax error : 'function-style cast' ClientLib c:\users\{user_name}\desktop\{solution_name}\clien tlib\src\GInterface.h 34

I see this error
08/03/2019 12:46 florian0#70
Quote:
Originally Posted by davarcı View Post
I see this error
Meh. I hate MSVC. That message doesn't even contain a single bit of information what's wrong. Are there any other messages displayed? Maybe check the Output tab...

Since the error occurs in GInterface.h Line 34, the issue might be that you put the code in a .h file instead of .cpp. Put it into GInterface.cpp
08/03/2019 12:52 davarcı#71
34.Line: reinterpret_cast<void(__thiscall*)(GInterface*, eLogType, const wchar_t*)>(0x007781B0)(this, level, str);
and
Output List
3 syntax error : 'function-style cast' ClientLib, DevKit_DLL, DevKit_DLL Same Line 34
08/03/2019 13:33 florian0#72
Ah found it. Oops.

reinterpret_cast<void(__thiscall*)(CGInterface*, eLogType, const wchar_t*)>(0x007781B0)(this, level, str);
08/03/2019 13:58 concucu#73
Bro. How to fix the position, even if the screen size is changed?
08/03/2019 18:19 davarcı#74
Thank you so much! It's worked!
08/03/2019 19:09 florian0#75
There's a function that deals with positioning of the "guide" icons on the side. I haven't reversed that, yet. All other elements need to be positioned by your own code using WindowWidth and WindowHeight.