@michi28
yellow option work?
Printable View
@michi28
yellow option work?
@michi28 how to add wcoin in account and edit cash shop?
Please share "shoppointex.txt" file.
How Rummy mini game?....
new client need?...
I created this for SilverBox.xml with all item from group 1 to 11 in Item.txt of ZTeam (have name of item beside config >> easy to search and edit) , now I'm share it to everyone, it maybe save alots of your time :
Download full file : Attachment 152867Quote:
<?xml version="1.0" ?>
<itembag>
<settings>
<name>Silver Box</name>
<zen min="10000000" max="50000000" />
<excoption op1="15" op2="15" op4="15" op8="15" op16="20" op32="20" />
</settings>
<itemlist rate="10000">
<item id="0" num="0" lvlmin="0" lvlmax="0" skill="1" luck="0" option="1" excmin="1" excmax="2" is_anc="0" sockmin="0" sockmax="0" /> <!--Kris-->
<item id="0" num="1" lvlmin="0" lvlmax="0" skill="1" luck="0" option="1" excmin="1" excmax="2" is_anc="0" sockmin="0" sockmax="0" /> <!--Short Sword-->
<item id="0" num="2" lvlmin="0" lvlmax="0" skill="1" luck="0" option="1" excmin="1" excmax="2" is_anc="0" sockmin="0" sockmax="0" /> <!--Rapier-->
.....
</itemlist>
</itembag>
Config line in ItemList can use to :
- SilverBox.xml
- GoldenBox.xml
- BoxOfLuck.xml
- BoxOfKundun1.xml
- BoxOfKundun2.xml
- BoxOfKundun3.xml
- BoxOfKundun4.xml
- BoxOfKundun5.xml
- GMGift.xml
- ...
( maybe more )
@michi28 did you try ChaosCard machine ?
Nuova cartella (4)
As you can see in the image game server by mistake nonrmaleI do not know if you can solve this?
UrkMontain normal map because the client does not support it
but the other can be solved at least error gameserver?
the links that I have put the terrain and MapAttribute
although there are still many bug fixes type move kalutan 2
if it is killed by the mob does not go safazone (excuse my bad english)
https://forum.ragezone.com/cache.php...%2F2zhljeq.jpghttps://forum.ragezone.com/cache.php...m%2Fivwj9s.pnghttps://forum.ragezone.com/cache.php...m%2Fnqbajr.jpg
@michi28 BlueEvent 100% Run :)
https://forum.ragezone.com/attachmen...d=152870&stc=1
I can not send PM: P The Full Box. can you tell how to add a file to drop the Event?
- - - Updated - - -
https://forum.ragezone.com/attachmen...d=152871&stc=1
anyone know how I can fix this problem?
Hello I found misspelling file elementalsystem.cpp:
https://forum.ragezone.com/cache.php..._elemental.jpg
I think it should be:
https://forum.ragezone.com/cache.php...Felemental.jpg
This error must be corrected to 2 places ...
michi28 please if it can be corrected in the source ...
if i was looking and attackdamage the same.
- - - Updated - - -
shows the elemental damage to hit the Monster
https://forum.ragezone.com/cache.php...3116360000.jpg
https://forum.ragezone.com/attachmen...d=152874&stc=1
as Fix This Problem ?
the GS online about morethan 5 hours and didnt crash again. BTW here's the crash .DMP file and his Server.Log
https://mega.co.nz/#!jwpT2CDL!5ZLre8...y2If3hCNzpljCk
https://forum.ragezone.com/attachmen...d=152875&stc=1
Not Element Damage :(
Little customs about commands:
1. Make command /move(/warp) to can be used while you are PK.
Open CommandManager.cpp find:
Edit:Code:case Command::Move:
To:Code:if( lpUser->m_PK_Level > 3 )
{
GCServerMsgStringSend(lMsg.Get(MSGGET(4, 101)), lpUser->m_Index, 1);
return;
}
Open: protocol.cppCode:if( lpUser->m_PK_Level > 6 )
{
GCServerMsgStringSend(lMsg.Get(MSGGET(4, 101)), lpUser->m_Index, 1);
return;
}
Find:Edit:Code:void CGWindowReqMove(PMSG_MOVE_REQUEST* lpMsg,int aIndex)
To:Code:if ( lpObj->m_PK_Level > 3)
{
GCServerMsgStringSend(lMsg.Get(MSGGET(4, 101)), lpObj->m_Index, 1);
return;
}
Code:if ( lpObj->m_PK_Level > 6)
{
GCServerMsgStringSend(lMsg.Get(MSGGET(4, 101)), lpObj->m_Index, 1);
return;
}
2. PKClear to can be used only by your character.
Open CommandManager.cpp
Find function:
Then replace the whole function with:Code:case Command::PKReset:
3. Sometimes zGS crash when success rate is more than 100%.Code:case Command::PKReset:
if ( lpUser->m_PK_Level <= 3 )
{
MsgOutput(lpUser->m_Index, "You are not PK.");
return;
}
if (lpUser->Money < lpCommand->Price * lpUser->m_PK_Count) {
MsgOutput(lpUser->m_Index, "You are short of money");
return;
}
lpUser->Money -= lpCommand->Price * lpUser->m_PK_Count;
GCMoneySend(lpUser->m_Index, lpUser->Money);
lpUser->m_PK_Count = 0;
lpUser->m_PK_Level = 3;
lpUser->m_PK_Time = 0;
// ----
if( lpUser->PartyNumber >= 0 )
{
gParty.SetPkLevel(lpUser->PartyNumber, lpUser->m_Index, lpUser->DBNumber, lpUser->m_PK_Level);
gParty.SetPkCount(lpUser->PartyNumber);
}
// ----
GCPkLevelSend(lpUser->m_Index, lpUser->m_PK_Level);
}
break;
Open ElementalSystem.cpp:
Find:
and obviously all of ChaosSuccessRateCode:lpObj->ChaosSuccessRate = 80;
Replace with:
Code:if ( lpObj->ChaosSuccessRate >= 100 )
{
lpObj->ChaosSuccessRate = 100;
}
else
{
lpObj->ChaosSuccessRate = 80;
}
retire // in
ElementalSystem.cpp
MsgOutput(lpObj->m_Index,"Base: [%d~%d]",lpObj->m_ElementalDamageMin,lpObj->m_ElementalDamageMax);
MsgOutput(lpObj->m_Index,"Increase dmg: %d%%",IncreaseDamage);
MsgOutput(lpObj->m_Index,"Add: [%d~%d]",AddDamageMin,AddDamageMax);
Does any 1 know how to fix Golden tarkan and golden atlans doesnt drop box of kundun 4 and 5?
guys can you give me fix sources?