Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Map/Area Info title

Newbie Spellweaver
Joined
Jul 30, 2013
Messages
60
Reaction score
24
Good evening,

I would like to make a Map/Area Info title on my own maps, like it is on screen.
Any ideas how to do it?


Maz3LT0v - Map/Area Info title - RaGEZONE Forums
Maz3LT0v - Map/Area Info title - RaGEZONE Forums
 
Experienced Elementalist
Joined
Jul 11, 2015
Messages
201
Reaction score
273
I think its a .dat file inside the maps folder
cant rly remember. xD
 
Upvote 0
Banned
Banned
Joined
Jul 14, 2016
Messages
184
Reaction score
77
Good evening,

I would like to make a Map/Area Info title on my own maps, like it is on screen.
Any ideas how to do it?


Maz3LT0v - Map/Area Info title - RaGEZONE Forums
Maz3LT0v - Map/Area Info title - RaGEZONE Forums

Go in your client folder and open the data/Overlays folder

The overlay images are in there and can be edited directly.

Maz3LT0v - Map/Area Info title - RaGEZONE Forums
 
Upvote 0
Experienced Elementalist
Joined
Jul 11, 2015
Messages
201
Reaction score
273
wow guys... gave the answer in the 2nd post and u guys are rambling about sources, coders and kamellanas.. srsly?

just check Regions.dat ffs
 
Upvote 0
Elite Diviner
Joined
Jun 17, 2012
Messages
422
Reaction score
149
Here's the ScreenOverlay function in 2016 engine
Code:
static char (__thiscall *ScreenOverlay)(int a, int a2, int a3, int a4, char a5) = (char (__thiscall*)(int,int,int,int,char))0x00426F80;

Hook it in a client-side dll then make a function in server-side dll to check if player in map X && Y then send a packet to client with the packet type you've set for screenoverlay function and you're done.

for example:
Code:
if (Player.GetX() / 8192 == 32 && Player.GetY() / 8192 == 29)
{
  // Send a packet to client with the packet type you've set for screen-overlay function.
}

hf :)
 
Upvote 0
Back
Top