[Release] Melissia Internal

09/09/2025 11:10 shadowofgod283#31
btw i wonder how the attackspeed work because, sometime i use x2 is already too fast, but sometime i need like x5 x10 to made it work. Thank you <3
09/11/2025 15:19 yoloai#32
The Entitylist how you do it?


Do you Mind sharing source code?
Snippet will do.
09/11/2025 16:21 Ultimeit#33
Quote:
Originally Posted by yoloai View Post
The Entitylist how you do it?


Do you Mind sharing source code?
Snippet will do.
Actor list in BDO is probably one of the easiest ones.
Code:
	
ActorProxy** first;
ActorProxy** last;
You can try finding it using this pattern, have absolutely zero idea if it still works given that it's outdated af, but so are private BDO servers versions...
Code:
48 8D 15 ?? ?? ?? ?? 48 8D 4C 24 ?? E8 ?? ?? ?? ?? 90 4C 8B ?? 24 ?? ?? 8B
To iterate it you can do something like that (not an actually tested code, just an example out of my memory)
Code:
int count = last - first;
for (int i = 0; i < count; i++)
{
	if (ActorProxy* actor = first[i])
	{
		//do stuff
	}
}
iirc they are sorted by distance, with self player being zero indexed in most cases.
09/11/2025 17:03 moalny#34
Quote:
Originally Posted by shadowofgod283 View Post
btw i wonder how the attackspeed work because, sometime i use x2 is already too fast, but sometime i need like x5 x10 to made it work. Thank you <3
Depends on your original attackspeed unless it's 0
10/18/2025 20:07 relogon11#35
Is it possible to add cast and animation speed?
Is it possible to add teleport to a player?(as we constantly teleport to monsters)
I really need these.
11/06/2025 01:33 jojo5528#36
How does the config save system work?

Is there a config file or anything like that that can be edited?

I want to edit things like names, locations, and teleport points (I find it inconvenient to do this during gameplay if I have a lot of saved points).

anyway.. is it possible you to update add animation speed hack ? :D
11/06/2025 03:18 moalny#37
Quote:
Originally Posted by jojo5528 View Post
How does the config save system work?

Is there a config file or anything like that that can be edited?

I want to edit things like names, locations, and teleport points (I find it inconvenient to do this during gameplay if I have a lot of saved points).

anyway.. is it possible you to update add animation speed hack ? :D
The file is binary, so it can't be directly edited in a text editor. I might look into this
11/06/2025 05:39 jojo5528#38
Quote:
Originally Posted by moalny View Post
The file is binary, so it can't be directly edited in a text editor. I might look into this

Oh and teleport function it’s like

Get falling damage while teleporting
So character die too much during teleport

Any tips for this ?
11/06/2025 15:56 moalny#39
Quote:
Originally Posted by jojo5528 View Post
Oh and teleport function it’s like

Get falling damage while teleporting
So character die too much during teleport

Any tips for this ?
You can do 2 things to prevent fall dmg while tp
1. just hold attack key.
2. hold "s" while weapon is up
11/17/2025 22:11 UAGhosT#40
/del
12/01/2025 07:13 haoxianyunjie#41
Latest: Added instant pet loot (Put it on the red bar) How do you operate this? Once you check 'instant pet loot', doesn't it take effect automatically?
12/02/2025 07:13 moalny#42
Quote:
Originally Posted by haoxianyunjie View Post
Latest: Added instant pet loot (Put it on the red bar) How do you operate this? Once you check 'instant pet loot', doesn't it take effect automatically?
No, pets can be put in different speeds Red, Yellow, Green I think. Just put it on red and it should work.
12/02/2025 14:09 casshern14#43
great cheat if only it has animation speed
12/03/2025 07:47 moalny#44
For everyone asking for anim speed, if animation speed is too fast it just instantly bans you. Not looking into that.

Quote:
Originally Posted by jojo5528 View Post
How does the config save system work?

Is there a config file or anything like that that can be edited?

I want to edit things like names, locations, and teleport points (I find it inconvenient to do this during gameplay if I have a lot of saved points).

anyway.. is it possible you to update add animation speed hack ? :D
Check new version for better config system

Quote:
Originally Posted by relogon11 View Post
Is it possible to add cast and animation speed?
Is it possible to add teleport to a player?(as we constantly teleport to monsters)
I really need these.
tp to player isn't too hard to fix. I don't see the use tho :/
12/07/2025 05:28 haoxian11#45
The names of NPCs, players, and monsters displayed in the Actors feature are showing as garbled text—not English, not Simplified Chinese, nor Traditional Chinese—completely unreadable characters.
Note: My game client language is set to Taiwan (Traditional Chinese).
Is there any solution for this issue?