-
[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
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Main crash if you use /store (wcc,bless...etc.) Season6 ! You can fix that only if you write something in shop name before use the command, maybe someone can fix it and send me the fixing code too ^_^
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
alinbr22
Main crash if you use /store (wcc,bless...etc.) Season6 ! You can fix that only if you write something in shop name before use the command, maybe someone can fix it and send me the fixing code too ^_^
Im not idea about this command, can you explain me how using to crash?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
IrukaSennin
Im not idea about this command, can you explain me how using to crash?
This is the costum store from muemu, you can see the configs in gameserver/gameserverinfo-costum (costum store)
I have a video, this can help you to get to the point.
https://www.youtube.com/watch?v=wTPu_20vTq4
Also would be great if i can have your skype id to chat in here, i have a server up and running and i can test for bugs anytime.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
How to crack main? i want crack the red main of 1.15p_Kor.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
alinbr22
This is the costum store from muemu, you can see the configs in gameserver/gameserverinfo-costum (costum store)
I have a video, this can help you to get to the point.
https://www.youtube.com/watch?v=wTPu_20vTq4
Also would be great if i can have your skype id to chat in here, i have a server up and running and i can test for bugs anytime.
Is really, this command crash main.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
i have tested custom/offline store on s6 and have no crashs
here are my config
Code:
;==================================================
; Custom Store Settings
;==================================================
CustomStoreSwitch = 1
CustomStoreMapZone = -1
CustomStoreEnable_AL0 = 1
CustomStoreEnable_AL1 = 1
CustomStoreEnable_AL2 = 1
CustomStoreEnable_AL3 = 1
CustomStoreRequireLevel_AL0 = 10
CustomStoreRequireLevel_AL1 = 10
CustomStoreRequireLevel_AL2 = 10
CustomStoreRequireLevel_AL3 = 10
CustomStoreRequireReset_AL0 = 0
CustomStoreRequireReset_AL1 = 0
CustomStoreRequireReset_AL2 = 0
CustomStoreRequireReset_AL3 = 0
CustomStoreCommandSyntax = /store
CustomStoreCommandJoBSyntax = bless
CustomStoreCommandJoSSyntax = soul
CustomStoreCommandJoCSyntax = chaos
CustomStoreCommandWCCSyntax = wcc
CustomStoreCommandWCPSyntax = wcp
CustomStoreCommandWCGSyntax = wcg
CustomStoreJoBName = .::BLESS STORE::.
CustomStoreJoSName = .::SOUL STORE::.
CustomStoreJoCName = .::CHAOS STORE::.
CustomStoreWCCName = .::WCC STORE::.
CustomStoreWCPName = .::WCP STORE::.
CustomStoreWCGName = .::WCG STORE::.
CustomStoreText1 = You do not have permission to use /store
CustomStoreText2 = You can only activate the command in the safe zone
CustomStoreText3 = Personal Shop is empty or items are without price
CustomStoreText4 = ATTENTION!! All items in this store are sold for Jewel of Bless
CustomStoreText5 = ATTENTION!! All items in this store are sold for Jewel of Soul
CustomStoreText6 = ATTENTION!! All items in this store are sold for Jewel of Chaos
CustomStoreText7 = ATTENTION!! All items in this store are sold for WCoinC
CustomStoreText8 = ATTENTION!! All items in this store are sold for WCoinP
CustomStoreText9 = ATTENTION!! All items in this store are sold for Goblin Point
CustomStoreText10 = You must be at least Level %d to use /store
CustomStoreText11 = You must be at least %d Resets to use /store
;==================================================
; Custom Store Offline Settings
;==================================================
CustomStoreOfflineSwitch = 1
CustomStoreOfflineGPGain = 0
CustomStoreOfflineMapZone = -1
CustomStoreOfflineEnable_AL0 = 1
CustomStoreOfflineEnable_AL1 = 1
CustomStoreOfflineEnable_AL2 = 1
CustomStoreOfflineEnable_AL3 = 1
CustomStoreOfflineRequireLevel_AL0 = 10
CustomStoreOfflineRequireLevel_AL1 = 10
CustomStoreOfflineRequireLevel_AL2 = 10
CustomStoreOfflineRequireLevel_AL3 = 10
CustomStoreOfflineRequireReset_AL0 = 0
CustomStoreOfflineRequireReset_AL1 = 0
CustomStoreOfflineRequireReset_AL2 = 0
CustomStoreOfflineRequireReset_AL3 = 0
CustomStoreOfflineCommandSyntax = /offstore
CustomStoreOfflineText1 = You do not have permission to use the /offstore
CustomStoreOfflineText2 = You need to open the Personal Store before
CustomStoreOfflineText3 = You can only activate the command in the safe zone
CustomStoreOfflineText4 = You must be at least Level %d to use the /offstore
CustomStoreOfflineText5 = You must be at least %d Resets to use the /offstore
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ashlay
i have tested custom/offline store on s6 and have no crashs
here are my config
Code:
;==================================================
; Custom Store Settings
;==================================================
CustomStoreSwitch = 1
CustomStoreMapZone = -1
CustomStoreEnable_AL0 = 1
CustomStoreEnable_AL1 = 1
CustomStoreEnable_AL2 = 1
CustomStoreEnable_AL3 = 1
CustomStoreRequireLevel_AL0 = 10
CustomStoreRequireLevel_AL1 = 10
CustomStoreRequireLevel_AL2 = 10
CustomStoreRequireLevel_AL3 = 10
CustomStoreRequireReset_AL0 = 0
CustomStoreRequireReset_AL1 = 0
CustomStoreRequireReset_AL2 = 0
CustomStoreRequireReset_AL3 = 0
CustomStoreCommandSyntax = /store
CustomStoreCommandJoBSyntax = bless
CustomStoreCommandJoSSyntax = soul
CustomStoreCommandJoCSyntax = chaos
CustomStoreCommandWCCSyntax = wcc
CustomStoreCommandWCPSyntax = wcp
CustomStoreCommandWCGSyntax = wcg
CustomStoreJoBName = .::BLESS STORE::.
CustomStoreJoSName = .::SOUL STORE::.
CustomStoreJoCName = .::CHAOS STORE::.
CustomStoreWCCName = .::WCC STORE::.
CustomStoreWCPName = .::WCP STORE::.
CustomStoreWCGName = .::WCG STORE::.
CustomStoreText1 = You do not have permission to use /store
CustomStoreText2 = You can only activate the command in the safe zone
CustomStoreText3 = Personal Shop is empty or items are without price
CustomStoreText4 = ATTENTION!! All items in this store are sold for Jewel of Bless
CustomStoreText5 = ATTENTION!! All items in this store are sold for Jewel of Soul
CustomStoreText6 = ATTENTION!! All items in this store are sold for Jewel of Chaos
CustomStoreText7 = ATTENTION!! All items in this store are sold for WCoinC
CustomStoreText8 = ATTENTION!! All items in this store are sold for WCoinP
CustomStoreText9 = ATTENTION!! All items in this store are sold for Goblin Point
CustomStoreText10 = You must be at least Level %d to use /store
CustomStoreText11 = You must be at least %d Resets to use /store
;==================================================
; Custom Store Offline Settings
;==================================================
CustomStoreOfflineSwitch = 1
CustomStoreOfflineGPGain = 0
CustomStoreOfflineMapZone = -1
CustomStoreOfflineEnable_AL0 = 1
CustomStoreOfflineEnable_AL1 = 1
CustomStoreOfflineEnable_AL2 = 1
CustomStoreOfflineEnable_AL3 = 1
CustomStoreOfflineRequireLevel_AL0 = 10
CustomStoreOfflineRequireLevel_AL1 = 10
CustomStoreOfflineRequireLevel_AL2 = 10
CustomStoreOfflineRequireLevel_AL3 = 10
CustomStoreOfflineRequireReset_AL0 = 0
CustomStoreOfflineRequireReset_AL1 = 0
CustomStoreOfflineRequireReset_AL2 = 0
CustomStoreOfflineRequireReset_AL3 = 0
CustomStoreOfflineCommandSyntax = /offstore
CustomStoreOfflineText1 = You do not have permission to use the /offstore
CustomStoreOfflineText2 = You need to open the Personal Store before
CustomStoreOfflineText3 = You can only activate the command in the safe zone
CustomStoreOfflineText4 = You must be at least Level %d to use the /offstore
CustomStoreOfflineText5 = You must be at least %d Resets to use the /offstore
Hi can you create a test acc in your server and send me a private message with download link for main and dlls ? i would like to see if the command crash only in some windows. I have w7 32b
Tested your config still crash.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Just put something in store name before using command.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Custom Store "Fix"
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
doing this we check if store is opened first and will change name to corresponding type of store
if store is not opened will not do anything
Need to be tested fine, and check if dont make another bug :P but seems to be working
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
maybe someone can convert Ex401 DB to sql 2000 ?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 8 box of kundus visual bug
Arca war npc not working
Lucky coins not working
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Lucky coins not working
You need to register them and after that you exchange them.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
What you mean ? Normally example if i have 10 lucky coins i can direct exchange them without register while in my invertory, so u mean that first i should register then use them ?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Hi, when i open game,exe (s8) this open antihack muemu and the mhpserver ok, but dont open main,exe
i aggre main,exe to DEP
Use Windows 7 :c
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ahmetoz27
Season 8 box of kundus visual bug
Arca war npc not working
Lucky coins not working
Yes you need to register the coins before you exchange.
In my server client i edited some text to make it clear for the players.
http://i.imgur.com/uRFlu66.jpg
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Bakuya
Yes you need to register the coins before you exchange.
In my server client i edited some text to make it clear for the players.
http://i.imgur.com/uRFlu66.jpg
Can you share it with me pls :)
- - - Updated - - -
And so many of muuns not working why ? do any one have any update for that?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Zitinho
Just put something in store name before using command.
This is the fix for "crash main" when you use the command /store.
If the store not have name, the main cant write magicaly one name and the main crash.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ahmetoz27
Can you share it with me pls :)
- - - Updated - - -
And so many of muuns not working why ? do any one have any update for that?
I dont understand, you have the problem? or you can help me? :(
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Wastedi
I dont understand, you have the problem? or you can help me? :(
Sorry i copy wrong quote but give me your skype i will check for you what is your problem
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ahmetoz27
Can you share it with me pls :)
- - - Updated - - -
And so many of muuns not working why ? do any one have any update for that?
You simply edit text_eng.bmd and change some lucky coins exchange text.As for MUUN they work in the server, the client provided by MU EMU is shit. We need Kor or Jpn client, with full protocol support by the server.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
IrukaSennin
This is the fix for "crash main" when you use the command /store.
If the store not have name, the main cant write magicaly one name and the main crash.
You should check s8 verison. And this is a bug because the server set name to the shop it dosent metter if you write any name to the shop, the server change the name.
- - - Updated - - -
Quote:
Originally Posted by
josesp
Custom Store "Fix"
on void CCustomStore::OpenCustomStore(LPOBJ lpObj,int type) find
and replace complete IF to
bellow find and comment
doing this we check if store is opened first and will change name to corresponding type of store
if store is not opened will not do anything
Need to be tested fine, and check if dont make another bug :P but seems to be working
I will test your code but the command working only if the shop its not open.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ahmetoz27
Sorry i copy wrong quote but give me your skype i will check for you what is your problem
Wow, thanks
Skype: nico_style16@hotmail.com
Thanks men.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
alinbr22
You should check s8 verison. And this is a bug because the server set name to the shop it dosent metter if you write any name to the shop, the server change the name.
The main crash when GS send the packet to Open the Store. With my "Fix" u will need to open store before set the type of Sell
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
josesp
The main crash when GS send the packet to Open the Store. With my "Fix" u will need to open store before set the type of Sell
Well thanks but i have another problem, when i try to connect to the server i'm getting "disconnected from the server". I have compiled the gs and replaced in muemu server files. The rest of my subservers its working well but the compiled one its something wrong...
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
For what I use the "Client_X401", the "Format", the "GetMainInfo", the "Protect" and the itens on "MHP" folder?
How I compile the MHP.exe?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
season 6 bug. death stab doesnt have effects.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
season 6 bug. death stab doesnt have effects.
Season 4 To
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
lokaoo
Season 4 To
any fix for that?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
season 6 bug. death stab doesnt have effects.
I test s6 but my death stab work very good. Your problem is sure a bad client.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
quest for 20/20/20 and DE doesnt count on party members. we have to kill DE and do 20/20/20 twice to finish the quest. how to fix this?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
quest for 20/20/20 and DE doesnt count on party members. we have to kill DE and do 20/20/20 twice to finish the quest. how to fix this?
If you have 2 characters is obvious that you need to kill twice the monsters, each characters with his count.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Bakuya
If you have 2 characters is obvious that you need to kill twice the monsters, each characters with his count.
even if we are on same party? how about on dark elf? me and my friend did it just today. We are on party. We killed the Dark elf. but only I get to finish the quest. so we have to kill dark elf 3x??
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
even if we are on same party? how about on dark elf? me and my friend did it just today. We are on party. We killed the Dark elf. but only I get to finish the quest. so we have to kill dark elf 3x??
Like I told you, this you have to code your self, this it not default behavior of MU, please get to know MU as it is before claiming a fix, when there's nothing to "fix" :)
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
quest for 20/20/20 and DE doesnt count on party members. we have to kill DE and do 20/20/20 twice to finish the quest. how to fix this?
Not have a problem, if you have a party, you need kill the monster to add kills points.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ai91ras
even if we are on same party? how about on dark elf? me and my friend did it just today. We are on party. We killed the Dark elf. but only I get to finish the quest. so we have to kill dark elf 3x??
Like the others said, just kill the mob x3 for 3 players party. Doesn't matter who gets the kill also you dont need to be in range.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
I have this problem, ip settings and everything is fine.
http://fotos.subefotos.com/870df5b18...f06191007o.gif
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
darkjano
Open Main.ccp
Find InitHackCheck();
Replace for //InitHackCheck();
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
/addcom should work ; just check the config in my files /addcom write as /addcmd just look on data\Message.txt (num 38)
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
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();
I tested in Emulator Season 4.
Great files!
Sorry my english.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
lol bug at season 4
*when u use command /offstore the reconnect system add u back to game :D pls someone help?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Please all need fix Skype: lifemu.ru
MuEmu Season 4
Screenshot by Lightshot
Screenshot by Lightshot
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
board123
Fix CustomAttack in Reconnect System
After reconnecting the char did not return attack.
Reconnect system add
GS ->
Reconnect.h
Add:
---
Reconnect.cpp
Function: void CReconnect::SetReconnectInfo(LPOBJ lpObj)
Add:
---
Function: void CReconnect::ResumeCommand(LPOBJ lpObj,RECONNECT_INFO* lpInfo)
Add:
I tested in Emulator Season 4.
Great files!
Sorry my english.
LIKE
Working... THX
Mano no s4 da xteam ele ta ativando o attack apertando F9 sabe como fazer isso?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
jeronemo6666
You dont fix any.. I cant see a bug in your pic.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
When doing this team a man should give disconnect, but as you can see in the picture I have is a bug reconnect
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
board123
Fix CustomAttack in Reconnect System
After reconnecting the char did not return attack.
Reconnect system add
GS ->
Reconnect.h
Add:
---
Reconnect.cpp
Function: void CReconnect::SetReconnectInfo(LPOBJ lpObj)
Add:
---
Function: void CReconnect::ResumeCommand(LPOBJ lpObj,RECONNECT_INFO* lpInfo)
Add:
I tested in Emulator Season 4.
Great files!
Sorry my english.
It is unlikely that this could work as it is necessary in this file fixes : CustomAttack.cpp
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
так ты не ответил, счего ты взял что я Биафрэнд ?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Skaz
It is unlikely that this could work as it is necessary in this file fixes : CustomAttack.cpp
I tested and is functional.
Saves up when the char relog.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
who can fixed the bug that /offstore \ /attackoff send to reconnect and dont disconnect?
more bug why i can't attack another char...
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 8 Dark Raven die sooo quick, and dark lord lags....
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
/offtrade and /offattack after it brings you to reconnect state just close your client with X. Is that so hard?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
priorian
/offtrade and /offattack after it brings you to reconnect state just close your client with X. Is that so hard?
I have the same question... hahaha
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Where I hook the main.dll for the client s6?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 6 build source, cannot connect game ...
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Custom Jewels Season 8 dont work( Screenshot by Lightshot
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Fix MiniMap EX401
Coloque esse Patch no client = Link Mega
Abra a Source Client_EX401
->Minimap.ccp
-> Substitua tudo pela Source abaixo
Code:
#include "stdafx.h"#include "MiniMap.h"
#include "Offset.h"
#include "Util.h"
bool MiniMapTable[MAX_MINI_MAP];
void InitMiniMap() // OK
{
memset(MiniMapTable,0,sizeof(MiniMapTable));
MemorySet(0x0060139B,0x90,0x02);
MemorySet(0x006C7F22,0x90,0x1E);
SetCompleteHook(0xFF,0x005D768A,&MiniMapCore);
SetCompleteHook(0xE8,0x006C7F22,&MiniMapLoad);
SetCompleteHook(0xFF,0x006C5FCA,&MiniMapCheck);
SetCompleteHook(0xFF,0x0071198A,&MiniMapCheck);
}
void MiniMapCore() // OK
{
((void(*)())0x005D2F16)();
MiniMapLoad();
}
void MiniMapLoad() // OK
{
if(*(int*)(MAIN_CURRENT_MAP) < MAX_MINI_MAP)
{
char buff[32];
wsprintf(buff,"Minimap\\World%d\\Map1.jpg",(*(int*)(MAIN_CURRENT_MAP)+1));
if(MiniMapFileCheck(*(int*)(MAIN_CURRENT_MAP)) != 0)
{
MiniMapTable[*(int*)(MAIN_CURRENT_MAP)] = 1;
((bool(*)(char*,DWORD,DWORD,DWORD,BYTE))0x006A92BE)(buff,0x7B69,0x2601,0x2900,1);
}
}
}
bool MiniMapCheck(int map) // OK
{
if(map == 30 || (map < MAX_MINI_MAP && MiniMapTable[map] != 0))
{
return 1;
}
else
{
return 0;
}
}
bool MiniMapFileCheck(int map) // OK
{
if(map == 30){return 1;}
char buff[64];
wsprintf(buff,".\\Data\\Minimap\\World%d\\Map1.ozj",(map+1));
FILE* file;
if(fopen_s(&file,buff,"r") != 0)
{
return 0;
}
else
{
fclose(file);
return 1;
}
}
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
bug tier2 hegatons set not fo? in season 8 help how to fix!
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
cripssy
bug tier2 hegatons set not fo? in season 8 help how to fix!
my problem also, still haven't found a way to get it working
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
MUnoob
my problem also, still haven't found a way to get it working
sigh... there is no bug
hegaton's set is anc set with no excel opts, if you want to make F.O ancients you have to edit the main too
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ftewegw1
sigh... there is no bug
hegaton's set is anc set with no excel opts, if you want to make F.O ancients you have to edit the main too
There already is FO ancients tho.. Just not tier 2
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
From what i tested i found the following bugs:
-Elemental Talisman of Luck is only 1% rate but shows 10%(not a problem but see next bug)
-Can't add more than 1 Elemental Talisman of Luck in any mix
-Elemental Talisman of Chaos doesn't work(you can add in mix but item fails 100% even if it shows that it succeed)
-Master Buff of Strengthener (+25 % EDR rate) is removed when Castle Siege starts.
-Server really likes to fail items in mixes (with 90 % rate -not client rate, gs log rate- items fail pretty often)
-Defense Success Rate Strengthener buff(RF) doesn't work with MU Helper (is not allowed to be put in the buff slots). This is fixed when you put points in Defense Success Rate Mastery.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Bakuya
From what i tested i found the following bugs:
-Elemental Talisman of Luck is only 1% rate but shows 10%(not a problem but see next bug)
-Can't add more than 1 Elemental Talisman of Luck in any mix
-Elemental Talisman of Chaos doesn't work(you can add in mix but item fails 100% even if it shows that it succeed)
-Master Buff of Strengthener (+25 % EDR rate) is removed when Castle Siege starts.
-Server really likes to fail items in mixes (with 90 % rate -not client rate, gs log rate- items fail pretty often)
-Defense Success Rate Strengthener buff(RF) doesn't work with MU Helper (is not allowed to be put in the buff slots). This is fixed when you put points in Defense Success Rate Mastery.
1 and 2 Talisman of Luck is only 1% and Elemental Talisman of Luck is 10% the total success rate that allowed to use this talisman is only 10% so you can only use 10pcs of Talisman of Luck and 1 pcs Elemental Talisman of Luck to balance the mix chaos if you allowed more that 20% or 30% success rate you will distract the sense of balance mix,3rd. i try this this Elemental Talisman of Chaos and its working, 4th Master Buff of Strengthener bug and 5th Defense Success Rate Strengthener bug..
buggy is the itemmove.txt i think this is not working properly muemu not give any document about this
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Edwin Adato
1 and 2 Talisman of Luck is only 1% and Elemental Talisman of Luck is 10% the total success rate that allowed to use this talisman is only 10% so you can only use 10pcs of Talisman of Luck and 1 pcs Elemental Talisman of Luck to balance the mix chaos if you allowed more that 20% or 30% success rate you will distract the sense of balance mix,3rd. i try this this Elemental Talisman of Chaos and its working, 4th Master Buff of Strengthener bug and 5th Defense Success Rate Strengthener bug..
buggy is the itemmove.txt i think this is not working properly muemu not give any document about this
Yes, muemu not have document about how working (or how is the idea to work) this customs...
I think the bug is the itemmove.txt not the element talisman.
- Master buff of Strengthener and Defense Success Rate Strengthener have bad the formula i think.. and the Chaos Machine rate is posible, have problem.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Someone can downgred the muemu to Season 2?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
anyone could share a cracked main.exe for 401?unpacked main.exe of 401 in home post ,how to use the main.exe?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Crowley
jewel custom work?
Season 8 - no
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Crowley
jewel custom work?
The problem is this offset in the client. With the packed main, is very difficult to fix.
Code:
void InitJewel()
{
SetCompleteHook(0xE9,0x00594C7D,&JewelSetSalePrice);
SetCompleteHook(0xE9,0x007C7C1A,&JewelCheckApplyItem);
SetCompleteHook(0xE9,0x004E6F17,&JewelCheckIndex1);
SetCompleteHook(0xE9,0x005EF320,&JewelCheckIndex2);
SetCompleteHook(0xE9,0x09EA30A8,&JewelCheckIndex3);
SetCompleteHook(0xE9,0x005EAF4B,&JewelCheckModelIndex1);
}
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
any got experience on season 8.3 death stab lost wind effect, before it was working but now it lost i try 3 different client but result is same
--update---
fix i done on source
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
Edwin Adato
any got experience on season 8.3 death stab lost wind effect, before it was working but now it lost i try 3 different client but result is same
--update---
fix i done on source
And how? Maybe someone needs fix too.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
apyrupa_master
The problem is this offset in the client. With the packed main, is very difficult to fix.
Code:
void InitJewel()
{
SetCompleteHook(0xE9,0x00594C7D,&JewelSetSalePrice);
SetCompleteHook(0xE9,0x007C7C1A,&JewelCheckApplyItem);
SetCompleteHook(0xE9,0x004E6F17,&JewelCheckIndex1);
SetCompleteHook(0xE9,0x005EF320,&JewelCheckIndex2);
SetCompleteHook(0xE9,0x09EA30A8,&JewelCheckIndex3);
SetCompleteHook(0xE9,0x005EAF4B,&JewelCheckModelIndex1);
}
this is the fix for jewel custom?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ADMTec
this is the fix for jewel custom?
No, this is the cause. Incorrect offset.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
piradzins
And how? Maybe someone needs fix too.
here
main_EX802
protocol.cpp
void GCCharacterInfoRecv
find
Code:
switch(((*(BYTE*)(*(DWORD*)(MAIN_CHARACTER_STRUCT)+0x0B)) & 7))
{
case 0:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.DWMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 1:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.DKMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 2:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.FEMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 3:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.MGMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 4:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.DLMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 5:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.SUMaxAttackSpeed>=0xFFFF)?0x02:0x0F));
break;
case 6:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.RFMaxAttackSpeed>=0xFFFF)?0x0F:0x0F));
break;
}
replace
case 1 = Dark knight
change to this on case 1
Code:
SetByte(0x0055B6A2,((gProtect.m_MainInfo.DKMaxAttackSpeed>=0xFFFF)?0x0F:0x0F));
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
CustomWingEffect season 8 = not working
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
BUG in Season6ep3 MuEMU release by jumbogram
if you change the exp rate in common.dat
after i click server selection im disconnected to the server.
but if you use only the default settings like that "AddExperienceRate_AL0 = 1"
no problem
;==================================================
; Experience Settings
;==================================================
AddExperienceRate_AL0 = 1 i try to change this to 1000,4000,5000,9999 still disconnected
AddExperienceRate_AL1 = 1
AddExperienceRate_AL2 = 1
AddExperienceRate_AL3 = 1
AddMasterExperienceRate_AL0 = 1i try to change this to 1000,4000,5000,9999 still disconnected
AddMasterExperienceRate_AL1 = 1
AddMasterExperienceRate_AL2 = 1
AddMasterExperienceRate_AL3 = 1
MinMasterExperienceMonsterLevel_AL0 = 95
MinMasterExperienceMonsterLevel_AL1 = 95
MinMasterExperienceMonsterLevel_AL2 = 95
MinMasterExperienceMonsterLevel_AL3 = 95
AddEventExperienceRate_AL0 = 1
AddEventExperienceRate_AL1 = 1
AddEventExperienceRate_AL2 = 1
AddEventExperienceRate_AL3 = 1
AddQuestExperienceRate_AL0 = 1
AddQuestExperienceRate_AL1 = 1
AddQuestExperienceRate_AL2 = 1
AddQuestExperienceRate_AL3 = 1
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
i need an Editor for "item_eng.bmd" Season8 Epi 3 Mu Emu Files, Ty! guys and for "item_tooltip.bmd" I proobed anothers editor but always "file corrupted"
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Shared fix master_reset in game?
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
I found bug in season 6 , out of nowhere I was declared and accepted a soccer with a clan that does not exist, also not members of the clan to sand teleported.
http://fotos.subefotos.com/1b3076c67...f443a510co.jpg
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Season 6:
Zen: drops shows 4m+ but when obtained becomes hundred millions..is this a bug? here's some screenshot
http://i.imgur.com/lc019yY.jpg
http://i.imgur.com/KUvJciL.jpg
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
darkjano
You can give me more information about this?
Is random? Or you declare a battle soccer vs other clan?
- - - Updated - - -
Quote:
Originally Posted by
samsunggon
BUG in Season6ep3 MuEMU release by jumbogram
if you change the exp rate in common.dat
after i click server selection im disconnected to the server.
but if you use only the default settings like that "AddExperienceRate_AL0 = 1"
no problem
;==================================================
; Experience Settings
;==================================================
AddExperienceRate_AL0 = 1 i try to change this to 1000,4000,5000,9999 still disconnected
AddExperienceRate_AL1 = 1
AddExperienceRate_AL2 = 1
AddExperienceRate_AL3 = 1
AddMasterExperienceRate_AL0 = 1i try to change this to 1000,4000,5000,9999 still disconnected
AddMasterExperienceRate_AL1 = 1
AddMasterExperienceRate_AL2 = 1
AddMasterExperienceRate_AL3 = 1
MinMasterExperienceMonsterLevel_AL0 = 95
MinMasterExperienceMonsterLevel_AL1 = 95
MinMasterExperienceMonsterLevel_AL2 = 95
MinMasterExperienceMonsterLevel_AL3 = 95
AddEventExperienceRate_AL0 = 1
AddEventExperienceRate_AL1 = 1
AddEventExperienceRate_AL2 = 1
AddEventExperienceRate_AL3 = 1
AddQuestExperienceRate_AL0 = 1
AddQuestExperienceRate_AL1 = 1
AddQuestExperienceRate_AL2 = 1
AddQuestExperienceRate_AL3 = 1
1 or 0, not other num.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
What can be the reasons that my client stuck at loading screen?
I have firewall disabled, re-checked ips, ports too many times.... But when its time to show the server list, its like the client dont sent the request to the connectserver... Just keep at loading screen, no usefull logs...
NOTE!: MHPServer disconnect my ip only if i close the client..
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
MuEmu x401
I don't know if it is a bug but I don't change drop settings as of the moment.
1.) Zen drops OK, Zen picked OK, Zen in inventory xmore of what i've picked
2.) the zen limit of 2,000,000,000 still can sell items in npc and pick zen drops which is not right
3.) Quest items got multiple drops
http://i.imgur.com/H2yIBBx.jpg
- - - Updated - - -
Did some make it working and fix x401 minimap bug?
Quote:
Fix MiniMap EX401
Coloque esse Patch no client =
https://mega.nz/#!ogsxzDiI!MIdIn2gqY...TxEUMXqN5gOZ0k
Abra a Source Client_EX401
->Minimap.ccp
-> Substitua tudo pela Source abaixo
Code:
#include "stdafx.h"#include "MiniMap.h"
#include "Offset.h"
#include "Util.h"
bool MiniMapTable[MAX_MINI_MAP];
void InitMiniMap() // OK
{
memset(MiniMapTable,0,sizeof(MiniMapTable));
MemorySet(0x0060139B,0x90,0x02);
MemorySet(0x006C7F22,0x90,0x1E);
SetCompleteHook(0xFF,0x005D768A,&MiniMapCore);
SetCompleteHook(0xE8,0x006C7F22,&MiniMapLoad);
SetCompleteHook(0xFF,0x006C5FCA,&MiniMapCheck);
SetCompleteHook(0xFF,0x0071198A,&MiniMapCheck);
}
void MiniMapCore() // OK
{
((void(*)())0x005D2F16)();
MiniMapLoad();
}
void MiniMapLoad() // OK
{
if(*(int*)(MAIN_CURRENT_MAP) < MAX_MINI_MAP)
{
char buff[32];
wsprintf(buff,"Minimap\\World%d\\Map1.jpg",(*(int*)(MAIN_CURRENT_MAP)+1));
if(MiniMapFileCheck(*(int*)(MAIN_CURRENT_MAP)) != 0)
{
MiniMapTable[*(int*)(MAIN_CURRENT_MAP)] = 1;
((bool(*)(char*,DWORD,DWORD,DWORD,BYTE))0x006A92BE)(buff,0x7B69,0x2601,0x2900,1);
}
}
}
bool MiniMapCheck(int map) // OK
{
if(map == 30 || (map < MAX_MINI_MAP && MiniMapTable[map] != 0))
{
return 1;
}
else
{
return 0;
}
}
bool MiniMapFileCheck(int map) // OK
{
if(map == 30){return 1;}
char buff[64];
wsprintf(buff,".\\Data\\Minimap\\World%d\\Map1.ozj",(map+1));
FILE* file;
if(fopen_s(&file,buff,"r") != 0)
{
return 0;
}
else
{
fclose(file);
return 1;
}
}
http://i.imgur.com/U5LRCCQ.jpg
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
ahmetoz27
Season 8 Dark Raven die sooo quick, and dark lord lags....
anyone got fix on this? experiencing the same...
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Good afternoon or evening, I wish some explain to me, because in the MU EMU X603 in selection of player can not delete any this level 1 ?, I put the account password as requested and will not let me delete the player.
If someone can help me I would be so thankful.
-
re: [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).
Quote:
Originally Posted by
MiniMun
Good afternoon or evening, I wish some explain to me, because in the MU EMU X603 in selection of player can not delete any this level 1 ?, I put the account password as requested and will not let me delete the player.
If someone can help me I would be so thankful.
I think you can disable the personal code check so it will accept even no personal code inserted.