Jump to content

Recommended Posts

Hey everyone!

I just hosted a server using TMP4's server and client project, but I honestly don't even know where to even start making changes.

If any of you could help me to remove the alchemy system I would be greatful. Also do any of you know of a guide / tutorial that explains the client-server thing and how to write a new system and stuff like this?

Thank you.

Link to comment
https://metin2.dev/topic/32989-removing-alchemy/
Share on other sites

  • Active+ Member

There are a lot of tutorials on this forum. Start exploring and researching. will take a bit. Regarding the alchemy, just remove the buttons that are opening the alchemy window as well as removing the quest related to it. is the most easiest solution. 

Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-166999
Share on other sites

This should be easier than u think it is.

First of all, you can go into root -> game.py and look for this -> 

onPressKeyDict[app.DIK_O]            = lambda : self.interface.ToggleDragonSoulWindowWithNoInfo()


Delete the entire line - after it is deleted, you can't open the alchemy UI anymore using the O key.

Then you can go into uiscript -> inventorywindow.py and look for "## Dragon Soul Button"
 

							## Dragon Soul Button
							{
								"name" : "DSSButton",
								"type" : "button",

								"x" : 114,
								"y" : 107,

								"tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,

								"default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
								"over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
								"down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
							},

It all should look something like this, delete it entirely, pack root and uiscript and the button and the method to open it should be gone.


 

  • Love 2

Software Engineer @ CNH Industrial (NAFTA/EMEA)

Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-167004
Share on other sites

Don't forget Expanded Taskbar, otherwise you'll still be able to open the Dragon Soul Window.

.png

root/uitaskbar.py

search:

		self.toggleButtonDict[ExpandedTaskBar.BUTTON_DRAGON_SOUL].SetParent(self) 

 

add below:

		self.toggleButtonDict[ExpandedTaskBar.BUTTON_DRAGON_SOUL].Hide()
Edited by KronosG
  • Love 1
Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-167007
Share on other sites

  • 2 weeks later...

Your locale language may differ, I'm assuming you have the default.

 Hey @ ramongen, head over to:

/usr/metin2/server/share/locale/english/quest

Find the file: locale_list

Delete or comment any dragon_soul related quests.

dragon_soul.quest, dragon_soul_refine.quest, dragon_soul_shop.quest, dragon_soul_daily_gift_mgr.quest, dragon_soul_daily_gift.quest
  • Love 1
Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-167214
Share on other sites

11 hours ago, KronosG said:

Your locale language may differ, I'm assuming you have the default.

 Hey @ ramongen, head over to:

/usr/metin2/server/share/locale/english/quest

Find the file: locale_list

Delete or comment any dragon_soul related quests.

dragon_soul.quest, dragon_soul_refine.quest, dragon_soul_shop.quest, dragon_soul_daily_gift_mgr.quest, dragon_soul_daily_gift.quest

Thank you, it worked!

The alchemist NPC still has the energy shard creation option, how can I remove that?

Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-167216
Share on other sites

2 hours ago, ramongen said:

The alchemist NPC still has the energy shard creation option, how can I remove that?

Same process find inside locale_list: energy_system.quest (Should be the only one I think).
Comment or delete it, then recompile quests.

  • Love 1
Link to comment
https://metin2.dev/topic/32989-removing-alchemy/#findComment-167227
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.