[Release] AOP Server Accserver no virus, custom Zone
Here are Account Login exe For AOP 4.15 that clean no virus
scan result= https://www.virustotal.com/gui/file/815cf46b300dce2a964398e58181edb9ecc45b974b512adcaa33e5465b26fefc
Link for download = https://drive.google.com/file/d/1--19o7Xskb-tk3lVStSzaqjyCCI2rj-F/view
-------------------------------------------------------------
This is the AOP Zone 4.15 new
Whats new thing ?
enabled button in UI[1/3]
enabled button in UI[2/3]
enabled button in UI[3/3]
increased count wall in geo data[1/2]
increased count wall in geo data[2/2]
ignoring bugged loot stack
This was fixed from the original zone a moment ago by my self .
For other function are default ( not touch change anything else)
To fix the time server just hook with your .dll
===============================================================
For anyone that wanna enable chip stats view for enable for all player here the offset that I found .
ZoneServer offset :
1F754F
1F637E
1F78E1
RFOnline bin offset :
16AEC1
Change 75 to EB for both use any hex editor like hxd
============================================================
For anyone that wanna enable specialist class can use skill elite here the offset that I found.
ZoneServer offset :
6FB0C ---> you need change 01 to 02
83166C ---> you need change 64 to 32
RFOnline bin offset :
1BFF4 ---> change 01 75 to 02 77
You can use any hex editor like hxd
===============================================================
Link Download https://drive.google.com/file/d/1gsV...ew?usp=sharing
virus scan = https://www.virustotal.com/gui/file/...c64f?nocache=1
Preview zoneserver performance after edit are dont use so much RAM if use many map ( the default zone if load with this map pack around 4,7 gb but now its safe alot .
https://i.ibb.co/4Knw6fn/zone-performance.jpg
Preview picture
https://i.ibb.co/ZmR8kqN/new-aop-zone.jpg
https://i.ibb.co/wsmRYng/picture-zone-aop.jpg
The offset are correct .
Preview enable chip stats see here
https://i.ibb.co/0VG1kjJ/chip-view-enable.jpg
Re: [Release] AOP Server Accserver no virus, custom Zone
Re: [Release] AOP Server Accserver no virus, custom Zone
Re: [Release] AOP Server Accserver no virus, custom Zone
Quote:
Originally Posted by
sadi
Time date bug fixed?
to fix time date bug use your own .dll sadi .
I already have from legendccr3d , but we are need to deep test it first .
to check everything work good didnt cause a error .
- - - Updated - - -
Quote:
Originally Posted by
likertuban
What is time date bug?
its a error that say you are not login for 30 days . its make the cpt point minus and removed from ranking list then make cant use dual potion buff expansion.
Re: [Release] AOP Server Accserver no virus, custom Zone
already share the timebug fix nowhere,
here's some 2232 version,
just improve to ur 4.15
Code:
u could patch a few things
rewrite :
GetKorLocalTime() -> problem with atoi to atoll for example
WriteMemoryBYTE(0x14074EF86, 0x75); //LastConnTime
WriteMemoryBYTE(0x1407502F1, 0x75); //[LastConnTime]
WriteMemoryBYTE(0x140750588, 0x75); //LastLogoutTime
GetConnectTime_AddBySec() for dualPotion ( atoi function )
- DBGet LastConnTime changed to BIGINT 04 00 -> E5 FF
- DBGet BuffEndTime changed to BIGINT 04 00 -> E5 FF
Hex Zone (i mean replace )
%d.log to %u.log
%d_U.log to %u_U.log
%d_A.log to %u_A.log
The Code :
//0000000140480680 Fix Time, almost for everything
unsigned int WINAPIV GetKorLocalTime(){
char szDate[32],szTime[32];
_strdate(szDate);
_strtime(szTime);
char szLocalTime[32];
//Year..(6, 7)
szLocalTime[0] = szDate[6];
szLocalTime[1] = szDate[7];
//Month..(0, 1)
szLocalTime[2] = szDate[0];
szLocalTime[3] = szDate[1];
//Day..(3, 4)
szLocalTime[4] = szDate[3];
szLocalTime[5] = szDate[4];
//Second..(0, 1)
szLocalTime[6] = szTime[0];
szLocalTime[7] = szTime[1];
//Minute..(3, 4)
szLocalTime[8] = szTime[3];
szLocalTime[9] = szTime[4];
szLocalTime[10] = NULL;
return (unsigned int)atoll(szLocalTime);
}
//000000014043CB80) Fix DualOD
unsigned int WINAPIV GetConnectTime_AddBySec(int iSec){
struct tm *Tm;
time_t origTime, afterTime; ::time(&origTime);
Tm = ::localtime(&origTime);
Tm->tm_sec += iSec; afterTime = mktime(Tm);
char Dest[32];
sprintf(Dest, "%01d%02d%02d%02d%02d", (unsigned int)(Tm->tm_year - 100), (unsigned int)(Tm->tm_mon + 1), (unsigned int)(Tm->tm_mday), (unsigned int)(Tm->tm_hour), (unsigned int)(Tm->tm_min));
return (unsigned int)atoll(Dest);
}
The rest is urs, improve it
if you need compiled version ( suitable for Yorozuya ) Download Here > https://www.mediafire.com/file/zkb6k...rozuya.7z/file
Re: [Release] AOP Server Accserver no virus, custom Zone
Quote:
Originally Posted by
EightCore
already share the timebug fix nowhere,
here's some 2232 version,
just improve to ur 4.15
Code:
u could patch a few things
rewrite :
GetKorLocalTime() -> problem with atoi to atoll for example
WriteMemoryBYTE(0x14074EF86, 0x75); //LastConnTime
WriteMemoryBYTE(0x1407502F1, 0x75); //[LastConnTime]
WriteMemoryBYTE(0x140750588, 0x75); //LastLogoutTime
GetConnectTime_AddBySec() for dualPotion ( atoi function )
- DBGet LastConnTime changed to BIGINT 04 00 -> E5 FF
- DBGet BuffEndTime changed to BIGINT 04 00 -> E5 FF
Hex Zone (i mean replace )
%d.log to %u.log
%d_U.log to %u_U.log
%d_A.log to %u_A.log
The Code :
//0000000140480680 Fix Time, almost for everything
unsigned int WINAPIV GetKorLocalTime(){
char szDate[32],szTime[32];
_strdate(szDate);
_strtime(szTime);
char szLocalTime[32];
//Year..(6, 7)
szLocalTime[0] = szDate[6];
szLocalTime[1] = szDate[7];
//Month..(0, 1)
szLocalTime[2] = szDate[0];
szLocalTime[3] = szDate[1];
//Day..(3, 4)
szLocalTime[4] = szDate[3];
szLocalTime[5] = szDate[4];
//Second..(0, 1)
szLocalTime[6] = szTime[0];
szLocalTime[7] = szTime[1];
//Minute..(3, 4)
szLocalTime[8] = szTime[3];
szLocalTime[9] = szTime[4];
szLocalTime[10] = NULL;
return (unsigned int)atoll(szLocalTime);
}
//000000014043CB80) Fix DualOD
unsigned int WINAPIV GetConnectTime_AddBySec(int iSec){
struct tm *Tm;
time_t origTime, afterTime; ::time(&origTime);
Tm = ::localtime(&origTime);
Tm->tm_sec += iSec; afterTime = mktime(Tm);
char Dest[32];
sprintf(Dest, "%01d%02d%02d%02d%02d", (unsigned int)(Tm->tm_year - 100), (unsigned int)(Tm->tm_mon + 1), (unsigned int)(Tm->tm_mday), (unsigned int)(Tm->tm_hour), (unsigned int)(Tm->tm_min));
return (unsigned int)atoll(Dest);
}
The rest is urs, improve it
if you need compiled version ( suitable for Yorozuya ) Download Here >
https://www.mediafire.com/file/zkb6k...rozuya.7z/file
Thanks, maybe its will usefull for those want use yoroza zone 2232 module pack .
For my self currently I just using single dll that fix time only to my zone 223 - aop .
So the zone can be use to test module .
Re: [Release] AOP Server Accserver no virus, custom Zone
Is this bug that time only use int hence limiting time until 2038? Or something? and does people just change it to unsigned int huh?
Re: [Release] AOP Server Accserver no virus, custom Zone
Hi, can anyone uload a client and database ?
Re: [Release] AOP Server Accserver no virus, custom Zone
What version does the client use
Re: [Release] AOP Server Accserver no virus, custom Zone
Quote:
Originally Posted by
keyrita1
What version does the client use
its use rf playpark client 4.55 but its can use other client from other official like rf remastered indonesia / any 4.55 from other country .
but for my self use custom client that can be use for 223 and 2232 that have patron update .
example like this the 223 that I remake from aop script.
https://iili.io/1luhaj.jpg
https://iili.io/1luQtI.jpg
https://iili.io/1lA1Hv.jpg
the different just the spriteimage file that be use at the client
for 223 and 2232 sure can be use together .
but for aop cant use 223 and 2232 spriteimage , because have different system image .
Re: [Release] AOP Server Accserver no virus, custom Zone
Re: [Release] AOP Server Accserver no virus, custom Zone
Quote:
Originally Posted by
IvonaDP
Here are Account Login exe For AOP 4.15 that clean no virus
scan result= https://www.virustotal.com/gui/file/815cf46b300dce2a964398e58181edb9ecc45b974b512adcaa33e5465b26fefc
Link for download = https://drive.google.com/file/d/1--19o7Xskb-tk3lVStSzaqjyCCI2rj-F/view
-------------------------------------------------------------
This is the AOP Zone 4.15 new
Whats new thing ?
enabled button in UI[1/3]
enabled button in UI[2/3]
enabled button in UI[3/3]
increased count wall in geo data[1/2]
increased count wall in geo data[2/2]
ignoring bugged loot stack
This was fixed from the original zone a moment ago by my self .
For other function are default ( not touch change anything else)
To fix the time server just hook with your .dll
===============================================================
For anyone that wanna enable chip stats view for enable for all player here the offset.
I just found the offset a while ago .
ZoneServer offset :
1F754F
1F637E
1F78E1
RFOnline bin offset :
16AEC1
Change 75 to EB for both use any hex editor like hxd
===============================================================
Link Download https://drive.google.com/file/d/1gsV...ew?usp=sharing
virus scan = https://www.virustotal.com/gui/file/...c64f?nocache=1
Preview zoneserver performance after edit are dont use so much RAM if use many map ( the default zone if load with this map pack around 4,7 gb but now its safe alot .
https://i.ibb.co/4Knw6fn/zone-performance.jpg
Preview picture
https://i.ibb.co/ZmR8kqN/new-aop-zone.jpg
https://i.ibb.co/wsmRYng/picture-zone-aop.jpg
The offset are correct .
Preview enable chip stats see here
https://i.ibb.co/0VG1kjJ/chip-view-enable.jpg
hey ivo,, i very sad rf dev is close i searching you, im very happy see you in here
Re: [Release] AOP Server Accserver no virus, custom Zone
Quote:
Originally Posted by
kazuyama
hey ivo,, i very sad rf dev is close i searching you, im very happy see you in here
yea after rf-dev close I just back here , to make the community back alive sooner or later i gona post release my updated server file 223 , GU and aop with new latest item / monster from official and some of my new custom .
for the map pack if there are someone can give mapdata.strs for 2232 sure i gona post the server file with full map pack .
I just can make the radar name thing work in 223 only with the full map pack , for 2232 / aop cant due dont have mapdata.strs :(
Re: [Release] AOP Server Accserver no virus, custom Zone
Do you have source code of your zone server??
Re: [Release] AOP Server Accserver no virus, custom Zone
This is not suitable for use in 4.15, it is only suitable for gu
- - - Updated - - -
Quote:
Originally Posted by
IvonaDP
Thanks, maybe its will usefull for those want use yoroza zone 2232 module pack .
For my self currently I just using single dll that fix time only to my zone 223 - aop .
So the zone can be use to test module .
This is not suitable for use in 4.15, it is only suitable for gu