Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

RF - PROBLEM


MuOnlineHelp

Rekomendowane odpowiedzi

  • 2 tygodnie później...
Opublikowano

tutaj masz wszystkie poprawki tych plików to bedzie to 25/07/2014 - Released
18/06/2014 - Released

-Fix Doppelganger [GS]

24/06/2014 - Released
-Fix SD & AG Boost (Item Period) [GS]
-Fix Summon Monster ELF [GS]

30/06/2014 - Released
-Fix New Wings Mix Fail [GS]
-Added 4thWings Mix File Config [GS]/[DATA/CUSTOM/CustomWing.cfg]

13/07/2014 - Released
-Added Balance System PVP [GS]/[DATA/CUSTOM/BalanceSystem.ini]
-Added Item Option Attack Fenrir [GS]/[DATA/CUSTOM/ItemOption.ini]
-Fixed Character Create (AntiHack) [GS]
-Fixed Summoner Create Character Card [GS]
-Fixed Priest Devin Transparency [GS]
-Rewrite Doppelganger Error [GS]
-Rewrite Elf Summon Error [GS]
-Fixed Drop Zen 0 (zero) [GS]
-Added new Sphere Item [GS]/[Data/Local/Eng/Item_eng.bmd]/[item.txt]/[Commonserver.cfg]
-Added New Summoner Set (Queen) [GS]/[Data/Local/Eng/Item_eng.bmd]/[item.txt]
-Fixed DL Pet Leveling [GS]/[QUERY]
-Added LuckyItem In Trade [CommonServer.cfg]
-Added Windows 2003 Support [GS]
-Fixed Rage Fighter Create Character Card [GS]/[DATASERVER]/[QUERY]

25/07/2014 - Released
-Fixed MEMB_STAT INFO [QUERY]
-Fixed RF Create Character Card [GS]/[DATASERVER]
-Fixed ItemToolTip QueenSet [DATA/LOCAL/(LANG)/ItemToolTip.bmd
-Fixed Mail System [GS]
-Fixed Illusion Temple [GS]
-Fixed DarkSide Skill Rewrite Full Func [GS]
-Fixed Illusion Temple Ranking [QUERY]
-Fixed Lucky Coin Register [QUERY] / [commonserver.cfg]
-Fixed ImperialGuardian Ranking [QUERY]
-Fixed Doppelganger Ranking [QUERY]

30/07/2014 - Released
-New Wings Effect [zClient]
-ServerTime Added [zClient]/[DATA/CUSTOM/INTERFACE/TimeBoard.ozt
-Fix Golden Tantalos & Golden Lizard [GS]
-Fix Mercenary Guild Quest [DATA/Quest_Ep20.lua] (nao funciona o resto, precisa programar)
-Fix Illusion Temple File [DATA/EVENT/IllusionTemple.dat]/[TTLCI.dll]
-Fixed Kundun Monster Drop Item (Config File Added) [Commonserver.cfg]
-Added Gold Channel Ticket [GS]/[QUERY]/[zDataServer]
-Added Vip System like Original GMO [GS]/[zGameServer/Serverinfo.dat]
-Fixed Mini-Wings [GS]
-Added Relogin System [GS]/[zClient]

31/07/2014 - Released
-Removed Gold Channel Ticket [GS]/[zDataServer]
-Encoder Added
-zClient Fix

08/08/2014 - Released
-Fixed /makeitembyname GS Crash [GS]
-Fixed Time [GS]/[Time.ozt]/[zClient.dll]
-Fixed Item Name (ancient and socket) [TTLCI.DLL]/[zClient.dll]
-Remove LuckyItemTrade [GS]/[Commonserver.cfg]
-Fixed Create RF & Sum Level [GS]
-Fixed Pet Absorve Damage Percent [GS]
-Fixed Mercenary Guild Quest [GS]/[Lua] (thx webmonkey)
-Added MixOption System [GS]/[Data/Custom/MixOption.txt]
-Fixed Wing Mix Success Rate [GS]/[MixOption.txt]
-Main Server & Local Time Change [zClient.dll]
-Fixed Period Item Time [GS]

More Power MuOnline

Opublikowano

Nie mogę zrobić RFa choc jest na liscie. 

Co zrobić?

 

Pliki S6EP3 zTeam

 

2782914143471341273521.jpg

 

Jeśli to nadal aktualnie to sprawdz w /Data/CommonSerwer.ini czy masz takie ustawienia.

CreateSUMLevel				= 150	//-> Summoner create level [1 - 400, 0 - Only card]
CreateMONKLevel				= 180	//-> Monk create level [1 - 400, 0 - Only card]

Druga opcja w bazie danych w kolumnie "AccountCharacter" Klikasz Desing. Dodajesz kolumne "RageFighter"  "tinyint" DefaultNull "no" w opcjach dajesz "DefaultValue 1"

 

12.jpg

 

Trzecia opcja to zmiana w kodzie źródłowym. W pliku DSProtocol.cpp tego:

#ifdef CHARCREATE_TEMP
		if( HightLevel >= gCreateSUMLevel )
		{
			GenerableClass += 1;
		}
		// ----
		if( HightLevel >= gCreateMONKLevel )
		{
			GenerableClass += 8;
		}
		// ----
		if( HightLevel >= gCreateMGLevel )
		{
			GenerableClass += 4;
		}
		// ----
		if( HightLevel >= gCreateDLLevel )
		{
			GenerableClass += 2;
		}
		// ----
		PMSG_UPD_SUMMONER_CREATE pMsg;
		pMsg.h.set((LPBYTE)&pMsg, 0xDE, sizeof(pMsg));
		pMsg.btResult = 0;
		pMsg.IsSummonerEnable = GenerableClass;
		// ----
		DataSend(aIndex, (LPBYTE)&pMsg, sizeof(pMsg));

Na:

#ifdef CHARCREATE_TEMP
		if( (HightLevel >= gCreateSUMLevel && gCreateSUMLevel > 0) || ( gCreateSUMLevel == 0 && gObj[aIndex].Summoner == 1 ) ) //Fix Summoner and RageFighter card
		{
			GenerableClass += 1;
		}
		// ----
		if( (HightLevel >= gCreateMONKLevel && gCreateMONKLevel > 0) || ( gCreateMONKLevel == 0 && gObj[aIndex].RageFighter == 1 ) ) //Fix Summoner and RageFighter card
		{
			GenerableClass += 8;
		}
		// ----
		if( HightLevel >= gCreateMGLevel )
		{
			GenerableClass += 4;
		}
		// ----
		if( HightLevel >= gCreateDLLevel )
		{
			GenerableClass += 2;
		}
		//Fix Summoner and RageFighter card
		PMSG_UPD_ACCOUNTINFO_CREATE pMsg;
		pMsg.h.set((LPBYTE)&pMsg, 0xDE, sizeof(pMsg));
		pMsg.btResult = 0;
		pMsg.IsSummonerEnable = GenerableClass;
		pMsg.IsRageFighterEnable = GenerableClass;
		// ----
		DataSend(aIndex, (LPBYTE)&pMsg, sizeof(pMsg));

Czwarta opcja i chyba najlepsza, korzystaj po prostu z plików które maja już to poprawione :)

 

Pozdrawiam.

Ultymek.png

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...