NGemity - An Open Source Rappelz Emulator

01/28/2018 19:50 Xijezu#46
I put the source on [Only registered and activated users can see links. Click Here To Register...], please feel free to contribute :)

If you're interested in joining the public Testserver, feel free to join us on [Only registered and activated users can see links. Click Here To Register...]
01/28/2018 20:22 XavierDeFawks#47
Just an FYI the "Taming Fix" isn't really a fix rather an adjustment. Back in E4 not all mobs were tamable, only those specified on the card could be tamed. x.x

Other than that great work! :D
01/28/2018 20:26 Xijezu#48
Quote:
Originally Posted by xXExiledXx View Post
Just an FYI the "Taming Fix" isn't really a fix rather an adjustment. Back in E4 not all mobs were tamable, only those specified on the card could be tamed. x.x

Other than that great work! :D
To be fair, I'm using the Arcadia from your 5.2 Release as a base because I was too lazy to import every rdb yet, so.... :p
01/28/2018 20:29 XavierDeFawks#49
Quote:
Originally Posted by Xijezu View Post
To be fair, I'm using the Arcadia from your 5.2 Release as a base because I was too lazy to import every rdb yet, so.... :p
Ok lol

Just wanted to let you know. :p
I know at some point I gave someone the work on E4 I did, it may have been Raskim :x, but they tried to fix the taming because they thought it was broken and I was like NO it was like that back in the day. xD

Anyway, keep up the great work! I am excited to see what the end result will be. :o

Also I still have some of the RDB plugins for glandus tool for E4 if you're interested.
01/28/2018 20:42 Xijezu#50
Quote:
Originally Posted by xXExiledXx View Post
Also I still have some of the RDB plugins for glandus tool for E4 if you're interested.
That'd be pretty awesome!
So far I got the ItemResource, SkillResource and SkillTreeResource.
Would be really cool to generate an almost full Epic 4 Database from the rdb files.
What I'd really like to have would be the Quest & QuestLink one because I may think the 5.2 ones cause some trouble, but nothing to rush for
01/28/2018 20:49 XavierDeFawks#51
I don't have a plugin for quest or questlink, but here are the ones I do have.
[Only registered and activated users can see links. Click Here To Register...]

Edit: Those should be the ones. If not I will have to go dig for them. lol
01/29/2018 00:00 ThunderNikk#52
Quote:
Originally Posted by xXExiledXx View Post
Just an FYI the "Taming Fix" isn't really a fix rather an adjustment. Back in E4 not all mobs were tamable, only those specified on the card could be tamed. x.x

Other than that great work! :D
Yeah I remember this...when each taming card had like 3 mob names listed on it and those were the only ones you could target with the card.
02/01/2018 02:20 mlejnek2#53
I have the the 5.2 that's been full down graded to 4.2 well most of it anyway skills taming and what not are all 4.2 items are a mix but working to get it fully 4.2 but I need to fix the mobs going into walls all the time
02/01/2018 03:17 SilentWisdom#54
Quote:
Originally Posted by mlejnek2 View Post
I have the the 5.2 that's been full down graded to 4.2 well most of it anyway skills taming and what not are all 4.2 items are a mix but working to get it fully 4.2 but I need to fix the mobs going into walls all the time
Stop spawning via lua, .nfs is the answer.

I'd love to help but c++ is outside my scope. GL
02/01/2018 04:24 XavierDeFawks#55
Quote:
Originally Posted by SilentWisdom View Post
Stop spawning via lua, .nfs is the answer.

I'd love to help but c++ is outside my scope. GL
C++ isn't that hard really. :p

Also below should be able to load quest rdbs for E4. Either that or E3/2 I don't remember which client they are for. xD

QuestResource.cpp

Edit: Did they have quest link back then?
02/01/2018 09:34 Xijezu#56
Quote:
Originally Posted by xXExiledXx View Post
Edit: Did they have quest link back then?
Server sided, yes, as RDB apparentely not. Neither the first, nor mid-epic4 client has it. Surprises me to be honest
02/08/2018 17:38 Xijezu#57
Pushing this once again:

Since the last update we made a bit of progress, including:
  • Monster wandering & auto aggro
  • Base implemention of trading
  • Various bug fixes
  • More enhancing
  • Better stat support
  • A few more skill implementations
  • Better support for platform independent compiling (a.k.a.: Fixed dependencies & CMake)

By now I'm not the only one working on it, besides me there are [Only registered and activated users can see links. Click Here To Register...] working on the Emulator.

Feel free to join us on our Testserver to play around a bit and discover (hopefully not so few :D ) bugs or even contribute to the project! :)

Once again:
Github link to the full source code: [Only registered and activated users can see links. Click Here To Register...]
Discord server including Testserver access: [Only registered and activated users can see links. Click Here To Register...]
02/09/2018 02:55 SilentWisdom#58
Hmn it really makes me want to take a stab at actor management, how are you currently handling actors? In sub-types by like NPC/PC/Monster/Summon/Looter? Or by base-type actor?

Damnit, now you make me wanna learn c++ (which I would honestly guess isn't too far out from c#)
02/09/2018 11:40 Xijezu#59
Quote:
Originally Posted by SilentWisdom View Post
Hmn it really makes me want to take a stab at actor management, how are you currently handling actors? In sub-types by like NPC/PC/Monster/Summon/Looter? Or by base-type actor?
Pretty similar to Pyrok and Skyfire (the project I'm basing the Emu on).

The absolute base class is an "Object", which has a pretty neat and extendable system for storing member variables, independent on what the child class is gonna be.
"Over" the Object we have the WorldObject, which is the base for all movement- and position based things. The reason for doing a subclass for this is for cases like Fieldprops or Items (yes, Items as worlddrops are technically WorldObjects in this case - not a fan of that tho. Thanks Gala.), those, that don't need to be some kind of Unit.
Now as the base for everything that's somehow able to fight, have equipment or skills or whatever, we have the Unit class. As mentioned before, this one contains like everything from stat calculations to damage calculations and so on.
And then, finally, we have the classes per se: Players, Monsters, NPCs, etc.

So it pretty much looks like this:
Player/Monster/NPC/Summon > Unit > WorldObject > Object
or
FieldProp/Item > WorldObject > Object
I'd highly recommend checking out the Object class, I took that idea from Skyfire as well because that's something you don't see every day and is hella smart design imho

Quote:
Originally Posted by SilentWisdom View Post
Damnit, now you make me wanna learn c++ (which I would honestly guess isn't too far out from c#)
Technically it isn't - if you understand C# you should understand like at least 90% of the Emulator.
As mentioned in the readme and the edited original post (check history), I took Pyroks Emulator as a reference for a ton of things and keep working with the Pseudocode we got from IDA, so you probably see tons of similarities here.
Also, besides having pointers now, I tried to keep the code as simple as possible, because a) I'm not a veteran C++ developer and b) what's the point if you open source it and people can't understand your code?
If you wanna mess around with it, just join us on Discord, clone/fork the repository and feel free to ask if there's something you don't understand. :)
02/20/2018 00:13 Xijezu#60
I revamped the original post, should be better now. :p

So far on the progress:
- Trading has been (almost) implemented
- Revamped tons of code (god, I love saying this :lul: )
- Started support for riding
- Tons of bug fixes and of course more bug additions for later fixes
- More skill support