and you simply have to add the following code in "source\DevKit_DLL\CMakeLists.txt"
Code:
option(CONFIG_OLD_UNDERBAR "Turn the old EXP Bar ON/OFF" OFF)
if (CONFIG_OLD_UNDERBAR)
add_definitions(-DCONFIG_OLD_UNDERBAR)
endif()
in the end you can use the cmake compiler flags to turn it off and on
Thanks but i meant the actual way to replace the example .. there're many examples like for ex item mall
+ the 2dt files still bugged with the coordinates of Pet's controls
+ it doesn't have the control for hide/show pets control so we can't say it's fully functional Old underbar
Thanks but i meant the actual way to replace the example .. there're many examples like for ex item mall
+ the 2dt files still bugged with the coordinates of Pet's controls
+ it doesn't have the control for hide/show pets control so we can't say it's fully functional Old underbar
How can I hide the CIFCloseButton on the ginterface?
How do I ensure that the window I created does not move (i want to cancel draggable)?
The button, the title and the handle-bar are part of CIFMainFrame. You can access the members and call ShowGWnd(false) in the OnCreate function of your own window. When you hide the dragable area, you can't drag the window.
can you share src runing on visual studio 2010
i can't make it run on visual studio 2010
who can upload src after build it on vs 2017 or 2015 or 2019?
You can use CMake to generate project files for any Visual Studio Version. Just change the make_project_vs2010.cmd. Change Visual Studio 2010 to any of the valid generators listed here:
Sharing generated project files is not a good idea. These are usually generated for a specific configuration. Paths might be hardcoded. CMake might be called during the build process to generate intermediate files. You will also have a really hard time integrating newer versions into your project files.
CMake makes your life easier. Please set up the build environment as described in the documentation:
I made guides with a lot of screenshots. You can follow along every step. Feel free to ask if you got stuck.
You can use CMake to generate project files for any Visual Studio Version. Just change the make_project_vs2010.cmd. Change Visual Studio 2010 to any of the valid generators listed here:
Sharing generated project files is not a good idea. These are usually generated for a specific configuration. Paths might be hardcoded. CMake might be called during the build process to generate intermediate files. You will also have a really hard time integrating newer versions into your project files.
CMake makes your life easier. Please set up the build environment as described in the documentation:
I made guides with a lot of screenshots. You can follow along every step. Feel free to ask if you got stuck.
I tried many different ways but it still didn't work
I tried many different ways but it still didn't work
Without any hint whats going wrong, I can't help you. So far, everyone who had a problem usually did a mistake during installation. Being it not installing VS2005, ticking the wrong option in the CMake-installer or not using Git for downloading.
If you followed every step as described, please report the error message or (mis-)behavior you get. I'm sure we can get that sorted.
Without any hint whats going wrong, I can't help you. So far, everyone who had a problem usually did a mistake during installation. Being it not installing VS2005, ticking the wrong option in the CMake-installer or not using Git for downloading.
If you followed every step as described, please report the error message or (mis-)behavior you get. I'm sure we can get that sorted.
do you have cmake version support visual studio 2005?
do you have cmake version support visual studio 2005?
I never thought anybody would, out of the endless options of IDEs to use, actually want to use Visual Studio 2005 ...
There are two ways to accomplish this:
1. Use an older CMake Version. CMake dropped the Visual Studio 2005 generator in 3.12, so any previous version will still have it. BUT! SRO_DevKit depends on 3.12 because it has add_compile_definitions, which makes it easier to add defines to the command line. You have to change all occurrences to add_definitions instead.
Create the NMake Makefiles with the make_project_nmake.cmd file. Open up Visual Studio 2005 and create a "New Project from existing sources"
Select Visual C++ and press next
Choose your SRO_DevKit folder as the project file directory, but remove the default subfolder and only add the source/-folder by yourself.
Tick "Use external build system" and press next
Enter the build commands as following. These are the debug build commands. The produced file won't result in a debug build so it doesn't matter if we enter them here, or on the next page (release build commands).
Just leave it as is. It will use the previously defined build commands.
Now you got the project in Visual Studio 2005.
Since you're using nmake instead of msbuild, you can't use Visual Studio 2005 for managing the project. All included files need to be added to the CMakeLists.txt file and you need to regenerate the Makefile with make_project_nmake.cmd.
If you're using the controls on the window frequently, you can save time by storing the pointer to the control in the class instead of calling GetResObj every time. An example can be found here:
[Source] Fix the old exp bar - by writing code! 05/17/2020 - SRO PServer Guides & Releases - 18 Replies Hello beloved, dead community,
its time for another release. Its more of a proof of concept and I hope it might inspire people to continue working on it. You don't need the source to accomplish cool things. Just write your own source.
http://i.epvpimg.com/d7hJbab.png
Ye, its super ugly looking. I choose to be a coder, not a designer. I'd be happy, if someone supplies me a proper version of the 2dt and ddj files so I can update this embarrassing screenshot.
Anyway. It allows you to...
[Release/WIP]EP6 Source code 04/15/2018 - Shaiya PServer Guides & Releases - 33 Replies Hi guys,
First of all, I want to say that this release is not recommended for public servers yet. Shortly ago I changed my server to ep6 using shen1l's pet.dll, the server crashed every day, after checking the dump files I discovered that the problem was in pet.dll, but without the source code it would be harder to find the cause of the problem. So I decided to start a project and release the source code for everyone, so that everyone can solve their problems more easily, and also so that...
[C++ Source] My Free Farm Bot [WIP] 06/28/2011 - Browsergames - 0 Replies I decided to release this on here as i have no more use for it and no intention to continue the project.
I am releasing 2 projects: One basic library for mff called libmff(although it is not really a library) there is an example on how to use it in the package.
And a helper with a fancy gui.
Note that there is almost no error checking on the helper and that it crashes if you for example forget to select a product.
You need libcurl and boost for both and GWEN(the gui toolkit by garry) for...