[Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Hi dears, i create this post to recopilate information for all develop to report bugs.
I will note one by one the bugs and if any have the solution, i will add the solution in the main post.
The contribution is needed for all to all. If you find any bug, is necesary report in this area to fix the problem. This forum has the best programmers and testers.
Season 4 Episode 2:
- Trade Zen BUG.
- No minimap BUG.
- No separate chat BUG.
- Lvl party BUG.
- /addcom won't work (fix, change data\Message.txt (num 38) /addcom to /addcmd)
- Problem ip setting (no always, only main emu - source)
- OffAttack or Custom Attack Bug (Reconnect Server)
Fix IP Setting (Thank locaoo):
Quote:
Open Main.ccp
Find InitHackCheck();
Replace for //InitHackCheck();
Fix OffAttack or Custom Attack (Thank board123):
Fix CustomAttack in Reconnect System
After reconnecting the char did not return attack.
Reconnect system add
GS ->
Reconnect.h
Add:
Quote:
struct RECONNECT_INFO
{
char Name[11];
DWORD ReconnectTime;
int PartyNumber;
int AutoAddPointCount;
int AutoAddPointStats[5];
int AutoResetEnable;
int AutoResetStats[5];
int RequestOption;
char AutoPartyPassword[11];
//New add
int AttackCustom;
int AttackCustomSkill;
int AttackCustomZoneX;
int AttackCustomZoneY;
int AttackCustomZoneMap;
//End add
GENS_SYSTEM_VICTIM_LIST GensVictimList[MAX_GENS_SYSTEM_VICTIM];
};
Reconnect.cpp
Function: void CReconnect::SetReconnectInfo(LPOBJ lpObj)
Add:
Quote:
info.AttackCustom = lpObj->AttackCustom;
info.AttackCustomSkill = lpObj->AttackCustomSkill;
info.AttackCustomZoneMap = lpObj->AttackCustomZoneMap;
info.AttackCustomZoneX = lpObj->AttackCustomZoneX;
info.AttackCustomZoneY = lpObj->AttackCustomZoneY;
Function: void CReconnect::ResumeCommand(LPOBJ lpObj,RECONNECT_INFO* lpInfo)
Add:
Quote:
lpObj->AttackCustom = lpInfo->AttackCustom;
lpObj->AttackCustomSkill = lpInfo->AttackCustomSkill;
lpObj->AttackCustomZoneMap = lpInfo->AttackCustomZoneMap;
lpObj->AttackCustomZoneX = lpInfo->AttackCustomZoneX;
lpObj->AttackCustomZoneY = lpInfo->AttackCustomZoneY;
lpObj->AttackCustomDelay = GetTickCount();
Season 6 Episode 3:
- Check TAB BUG.
- Blood Castle and Chaos Castle BUG (buff not working before to start the event).
- Chaos Castle Drop BUG.
- /store (bless, soul, etc.) crash main
FIX /store (Thank josesp):
on void CCustomStore::OpenCustomStore(LPOBJ lpObj,int type) find
Quote:
if(lpObj->PShopOpen != 0)
and replace complete IF to
Quote:
if(lpObj->PShopOpen == 0)
{
gNotice.GCNoticeSend(lpObj->Index,1,0,0,0,0,0,"Please Open Store before set Custom Store");
//gPersonalShop.GCPShopOpenSend(lpObj->Index,0);
return;
}
bellow find and comment
Quote:
//gPersonalShop.GCPShopOpenSend(lpObj->Index,1); <-This cause the crash on client if client dont have store name setted
Ex803:
- Arrows and bolts can be upgraded with jewels.
- /mreset not work.
- Season 8 box of kundus visual bug
- Arca war npc not working
- Master buff of Strengthener and Defense Success Rate Strengthener have bad the formula i think.. and the Chaos Machine rate is posible, have problem.
- Itemmove.txt is wrong (cant add more talisman to machine)
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 4 Ep 1
Bug with trade zen. Please try trade only zen and look what happen. The button when pressed not pressed and need to press it few times for accept trade.
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 4:
Party can be created with high lvl between players, but the one with low lvl don't recieve any exp.
EDIT - 22/03-2016
- No minimap
- No separate chat
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
here is the fix for the tab thing in s6
Code:
Other gOther;
DWORD dwAllowTabSwitchLoginJMP = 0x0040B16F;
// ----------------------------------------------------------------------------------------------
Naked(AllowTabSwitchLogin)
{
_asm
{
PUSH 0
MOV EAX, DWORD PTR SS : [EBP - 0x38]
MOV ECX, DWORD PTR DS : [EAX + 0x350]
MOV EDX, DWORD PTR SS : [EBP - 0x38]
MOV EAX, DWORD PTR DS : [EDX + 0x350]
MOV EDX, DWORD PTR DS : [EAX]
CALL DWORD PTR DS : [EDX + 0x30]
// ----
MOV EAX, DWORD PTR SS : [EBP-0x38]
MOV ECX, DWORD PTR DS : [EAX+0x354]
PUSH ECX
MOV EDX, DWORD PTR SS : [EBP - 0x38]
MOV ECX, DWORD PTR DS : [EDX + 0x350]
MOV EAX, DWORD PTR SS : [EBP - 0x38]
MOV EDX, DWORD PTR DS : [EAX + 0x350]
MOV EAX, DWORD PTR DS : [EDX]
CALL DWORD PTR DS : [EAX + 0x58]
// ----
MOV ECX, DWORD PTR SS : [EBP - 0x38]
MOV EDX, DWORD PTR DS : [ECX + 0x350]
PUSH EDX
MOV EAX, DWORD PTR SS : [EBP - 0x38]
MOV ECX, DWORD PTR DS : [EAX + 0x354]
MOV EDX, DWORD PTR SS : [EBP - 0x38]
MOV EAX, DWORD PTR DS : [EDX + 0x354]
MOV EDX, DWORD PTR DS : [EAX]
CALL DWORD PTR DS : [EDX + 0x58]
// ----
JMP dwAllowTabSwitchLoginJMP
}
}
// ----------------------------------------------------------------------------------------------
void Other::Load()
{
SetOp((LPVOID)0x0040B154, AllowTabSwitchLogin, ASM::JMP);
}
working in zmain (1.04.04) not sure if it works in muemu, you have to test it.
add this in the dllmain.cpp or what ever it is called in muemu
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Sims
Season 4:
Party can be created with high lvl between players, but the one with low lvl don't recieve any exp.
Your problem is probably not bug. Check de party exp in the files config and play with the numbers. (Anyway when i finish test s6, i will test s4 and check this).
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
IrukaSennin
Your problem is probably not bug. Check de party exp in the files config and play with the numbers. (Anyway when i finish test s6, i will test s4 and check this).
Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60
EDIT - S4 bugs
- No minimap
- No separate chat
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
diemorko
Season 4 Ep 1
Bug with trade zen. Please try trade only zen and look what happen. The button when pressed not pressed and need to press it few times for accept trade.
Anyone could know how solve this problem?
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Sims
Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60
EDIT - S4 bugs
- No minimap
- No separate chat
check if theres an option for party lvl gap
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Sims
Sounds plausible, but I don't know what I'm looking for:
;==================================================
; Party Settings
;==================================================
PartyReconnectTime = 300
PartyGeneralExperience1 = 100
PartyGeneralExperience2 = 80
PartyGeneralExperience3 = 60
PartyGeneralExperience4 = 50
PartyGeneralExperience5 = 45
PartySpecialExperience1 = 100
PartySpecialExperience2 = 80
PartySpecialExperience3 = 75
PartySpecialExperience4 = 65
PartySpecialExperience5 = 60
EDIT - S4 bugs
- No minimap
- No separate chat
Yes probably is a bug, when you have a diferent lvl (more 130 lvls) the server send a message to the user when give a party.
- - - Updated - - -
Quote:
Originally Posted by
diemorko
Anyone could know how solve this problem?
If you have the source you can check the "if" sentence, probably the problem is the "check sentences" not is correct. Im not check the season 4 now, but in season 6 work fine. You can compare the source and check if have any diference.
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
S6 BUGS
When the users use party and this increase bonus xp, but if a one user lvl alone with party this recive a bonus experience
CC and BC bug when enter with buffs
PD: I create server before two months and the server work fine fine, one time the JoinServer Cash, the server was on ten days, but the server files are stable!
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Wastedi
S6 BUGS
When the users use party and this increase bonus xp, but if a one user lvl alone with party this recive a bonus experience
CC and BC bug when enter with buffs
PD: I create server before two months and the server work fine fine, one time the JoinServer Cash, the server was on ten days, but the server files are stable!
I dont understand your party bug, can you create a video or explain better?
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 8 BUG: Arrows and bolts can be upgraded with jewels
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 4;
/addcom won't work, all other works fine.
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 8 /mreset no reset level master or add point ( master point )
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
tincho
Season 8 /mreset no reset level master or add point ( master point )
I have a list of bug ex803 but i cant test now this version (im going test s6).
Can you check if all is real?
Arca War, Quest gens, extraction of seed disconnects, dupp, guild member, it, Agi Bug 65k for High Elf
# After finish quest for evolution 3 (Blade Master, Grand Master, etc.) the character no receive the extra point
# Golden Archer not work
# Firecracker not work
# Blue Heart or Heart of Dark Lord not work
# MU Chat (F Key) -not work mails for but chat with friends not ( this bug is not a problem , who use f key ahahaha ? )
# The expanded inventory work only with 2 extra inventorys, with 3 or 4 crash client
#GS CRASH USING OR MOVE ELEMENT ITEMS
#Gens not work