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?
![]()
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?
![]()
I think its a .dat file inside the maps folder
cant rly remember. xD
I would like to add NEW for NEW Maps on different coordinates:-)
the best way is to use portal system, ofc u have to code it urself if u want it on different position, but im not sure about, u should ask one of the coders
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
Here's the ScreenOverlay function in 2016 engine
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.Code:static char (__thiscall *ScreenOverlay)(int a, int a2, int a3, int a4, char a5) = (char (__thiscall*)(int,int,int,int,char))0x00426F80;
for example:
hf :)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. }
.....
Last edited by RevEngKal; 14-08-21 at 07:10 PM.