Quote:
artherouge3 happy new year and thank you so much for this.
Managed to setup the server on (windows) and am running the game on Linux and for whatever reason the music is not playing. Will fiddle some more to see if I can fix this in wine but if this is a know issue let me know so I don't waste more time trying to fix it. :)
The only thing I have run into now is that I see the bronze/silver/gold orbs are not present in the client also not the orb traders. Is this known? Is this due to the client not being correct or tampering with item drops on the server? If the later is there a way to remove the orbs (or other missing items) from the drop table of mobs?
Edit: Think I found the data
Used the below sql query to find the item_id's:
*Note needed to remove 'code' from [ ] due to forum seeing this as beginning of code structure.
Code:SELECT [ItemResource].[id] AS item_id ,code,[value] FROM [Arcadia952].[dbo].[StringResource] JOIN [Arcadia952].[dbo].[ItemResource] AS ItemResource ON [Arcadia952].[dbo].[StringResource].code = [ItemResource].[name_id] WHERE [value] LIKE '%Orb<Boss Token>'
This gave me the 3 items id's (2011305,2011306,2011307) and then ran the below SQL query to pull any drop table containing 1 or more of these items.
I see three option:Code:SELECT [id],[sub_id],[drop_item_id_00],[drop_percentage_00],[drop_min_count_00],[drop_max_count_00],[drop_min_level_00],[drop_max_level_00] ,[drop_item_id_01],[drop_percentage_01],[drop_min_count_01],[drop_max_count_01],[drop_min_level_01],[drop_max_level_01] ,[drop_item_id_02],[drop_percentage_02],[drop_min_count_02],[drop_max_count_02],[drop_min_level_02],[drop_max_level_02] ,[drop_item_id_03],[drop_percentage_03],[drop_min_count_03],[drop_max_count_03],[drop_min_level_03],[drop_max_level_03] ,[drop_item_id_04],[drop_percentage_04],[drop_min_count_04],[drop_max_count_04],[drop_min_level_04],[drop_max_level_04] ,[drop_item_id_05],[drop_percentage_05],[drop_min_count_05],[drop_max_count_05],[drop_min_level_05],[drop_max_level_05] ,[drop_item_id_06],[drop_percentage_06],[drop_min_count_06],[drop_max_count_06],[drop_min_level_06],[drop_max_level_06] ,[drop_item_id_07],[drop_percentage_07],[drop_min_count_07],[drop_max_count_07],[drop_min_level_07],[drop_max_level_07] ,[drop_item_id_08],[drop_percentage_08],[drop_min_count_08],[drop_max_count_08],[drop_min_level_08],[drop_max_level_08] ,[drop_item_id_09],[drop_percentage_09],[drop_min_count_09],[drop_max_count_09],[drop_min_level_09],[drop_max_level_09] FROM [Arcadia952].[dbo].[MonsterDropTableResource] WHERE [drop_item_id_00] = 2011305 OR [drop_item_id_01] = 2011305 OR [drop_item_id_02] = 2011305 OR [drop_item_id_03] = 2011305 OR [drop_item_id_04] = 2011305 OR [drop_item_id_05] = 2011305 OR [drop_item_id_06] = 2011305 OR [drop_item_id_07] = 2011305 OR [drop_item_id_08] = 2011305 OR [drop_item_id_09] = 2011305 OR [drop_item_id_00] = 2011306 OR [drop_item_id_01] = 2011306 OR [drop_item_id_02] = 2011306 OR [drop_item_id_03] = 2011306 OR [drop_item_id_04] = 2011306 OR [drop_item_id_05] = 2011306 OR [drop_item_id_06] = 2011306 OR [drop_item_id_07] = 2011306 OR [drop_item_id_08] = 2011306 OR [drop_item_id_09] = 2011306 OR [drop_item_id_00] = 2011307 OR [drop_item_id_01] = 2011307 OR [drop_item_id_02] = 2011307 OR [drop_item_id_03] = 2011307 OR [drop_item_id_04] = 2011307 OR [drop_item_id_05] = 2011307 OR [drop_item_id_06] = 2011307 OR [drop_item_id_07] = 2011307 OR [drop_item_id_08] = 2011307 OR [drop_item_id_09] = 2011307
* change the item id
* change the drop percentage
* change the item min/max count
personally think the percentage is the way to go but will dig into it tomorrow. too late at the moment.
Well, i'm using linux myself and ig you just need to set up directx from official wine sources. Use winetricks. Or perhaps you most likely would want to use lutris which has everything built-in
What about orbs I have no idea what you're talking about, but seems like here is something inside of monsters drop? I will check