one year has passed since the initial release. So it's time for something new"". I hope @ will give this one a proper rating as well.
I always wanted to have a proper example window to show how the library can be used. So I decided to reverse engineer the single most window nobody is interested in:
The chat window (Dramatic: Dam dam dam ...)
I reverse engineered the chat. Not all of it, yet. But enough to keep me busy a for whole year.
We know have:
Networking support: You can now send packets to the server
Scroll-Bar behaviour: Attach a scrollbar to a textbox (probably also works with other lists)
Proper code to write anything to the chat
Did someone say "Item linking"?
A lot of example code on how to work with Silkroad's UI
Where's the code, bro?
It's not merged yet, therefore you can only find it here:
im pretty sure that this project has GetIFWnd and SetPosition equivalent and with my example above, u will be set the minimap to center of the window when the resolution changed
GetResObj returns an CIFWnd-pointer by default. This is the base type. For all UI types.
CIFStatic is a CIFWnd, but CIFWnd is not a CIFStatic. Assigning an CIFWnd-pointer to a CIFStatic-pointer would be an upcast (since CIFWnd is the parent and CIFStatic the derived class). So this wont work.
Since we KNOW (or at least hope) which type will be returned from GetResObject, we can use the reinterpret_cast-pry bar and make it a CIFStatic:
Since this code is ugly, I made another version which casts it to the given type internally. Functionality is the same, but code is shorter and more readable.
[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...