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!

[Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8).

Newbie Spellweaver
Joined
Aug 11, 2005
Messages
20
Reaction score
1
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?
 
Experienced Elementalist
Joined
Dec 13, 2007
Messages
275
Reaction score
55
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.
 
Newbie Spellweaver
Joined
Aug 11, 2005
Messages
20
Reaction score
1
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??
 
Newbie Spellweaver
Joined
Feb 3, 2006
Messages
60
Reaction score
3
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" :)
 
Experienced Elementalist
Joined
Dec 13, 2007
Messages
275
Reaction score
55
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.
 
Newbie Spellweaver
Joined
Dec 31, 2013
Messages
90
Reaction score
2
I have this problem, ip settings and everything is fine.


IrukaSennin - [Development] Zone bugs report, Files EMU (X-Team) all season (4 - 6 - 8). - RaGEZONE Forums
 
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
/addcom should work ; just check the config in my files /addcom write as /addcmd just look on data\Message.txt (num 38)
 
Initiate Mage
Joined
Jan 9, 2009
Messages
4
Reaction score
3
Fix CustomAttack in Reconnect System
After reconnecting the char did not return attack.

Reconnect system add

GS ->
Reconnect.h
Add:
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:
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:
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.
 
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
lol bug at season 4
*when u use command /offstore the reconnect system add u back to game :D pls someone help?
 
Newbie Spellweaver
Joined
Jan 31, 2014
Messages
16
Reaction score
0
Please all need fix Skype: lifemu.ru
MuEmu Season 4

 
Newbie Spellweaver
Joined
Feb 11, 2013
Messages
18
Reaction score
9
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?
 
Newbie Spellweaver
Joined
Jan 31, 2014
Messages
16
Reaction score
0
When doing this team a man should give disconnect, but as you can see in the picture I have is a bug reconnect
 
Newbie Spellweaver
Joined
Apr 4, 2015
Messages
45
Reaction score
59
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
 
Back
Top