how remove card skill in loot

08/08/2011 20:01 xhack069#1
help me for remove card skill in loot
08/08/2011 20:12 Ranma014#2
get card ids
go into arcadia.dbo.dropgroupresource
search and change them all to 0
08/10/2011 15:15 kacccc#3
Quote:
Originally Posted by Ranma014 View Post
get card ids
go into arcadia.dbo.dropgroupresource
search and change them all to 0
lol

UPDATE [Arcadia].[dbo].[MonsterResource]
SET [drop_percentage_01] = 0
,[drop_min_count_01] = 0
,[drop_max_count_01] = 0
,[drop_min_level_01] = 0
,[drop_max_level_01] = 0
WHERE [drop_item_id_01] LIKE '%-3000%'
GO
08/11/2011 16:44 Ranma014#4
Quote:
Originally Posted by kacccc View Post
lol

UPDATE [Arcadia].[dbo].[MonsterResource]
SET [drop_percentage_01] = 0
,[drop_min_count_01] = 0
,[drop_max_count_01] = 0
,[drop_min_level_01] = 0
,[drop_max_level_01] = 0
WHERE [drop_item_id_01] LIKE '%-3000%'
GO
Nice, thanks. I didnt look into the DropGroups of skill cards yet, since I dont mind them.
I took alook at the database. The where clause affects two groups: -3000152 and -3000129.
Those two groups link to more groups. The final Groups that contain the actual skill cards are -510000 to -510020 and -520001 to -520017.

I found more groups which link to those. I didnt check those out, so I am gonna ask. Are there still mobs dropping skillcards even after deleting those two major groups from the drop list? since we just affect the first slot for the item drops and there are still other groups using the skill card groups.
08/11/2011 22:14 Müllmann10#5
Hm it dont work :/
08/11/2011 23:29 Ranma014#6
Quote:
Originally Posted by Müllmann10 View Post
Hm it dont work :/
In which way it doesnt work?

Inwiefern funktioniert es nicht?

PS: He, she, it, das "s" muss mit :)
08/12/2011 00:22 Müllmann10#7
Naja wenn ich es so mache wie es dort steht, droppen SK genauso wie vorher.

Jedoch der Verkaufspreis beim Händler ändert sich auf werte wie 400kk oder -400kk, was wiederrum nur ein Anzeigebug dann ist....
08/12/2011 01:19 Ranma014#8
Quote:
Originally Posted by Müllmann10 View Post
Naja wenn ich es so mache wie es dort steht, droppen SK genauso wie vorher.

Jedoch der Verkaufspreis beim Händler ändert sich auf werte wie 400kk oder -400kk, was wiederrum nur ein Anzeigebug dann ist....
Also das kann schonmal überhaupt nicht stimmen.
Der Befehl editiert nur die Monsteresource table. Und dort ändert er auch nur die Menge und die Wahrscheinlichkeit für 2 DropGruppen auf 0.
Wenn alles wieder einwandfrei läuft mach ein New Query im SQL Manager und fügt dort das hier ein und drück Execute (Backup vorher nicht vergessen!!):

Code:
USE [Arcadia]
GO
UPDATE [dbo].[MonsterResource]
SET [drop_percentage_01] = 0, [drop_min_count_01] = 0, [drop_max_count_01] = 0, [drop_min_level_01] = 0, [drop_max_level_01] = 0
WHERE [drop_item_id_01] = -3000129 OR [drop_item_id_01] = -3000152

PS: Ich hab das bei mir noch nicht getestet. Wenn es immer noch nicht geht, nenn mir bitte mal deine droprate und den mob an dem du es getestet hast (voller name und ort, bzw nur die ID)
Ich weiß dass es noch mehr DropGruppen gibt die die Skillkartenlisten benutzen, hab die aber noch nicht durchgeschaut.
08/12/2011 12:16 Müllmann10#9
Hm schein nun doch zu gehen (:

Habe anscheinend was vergessen :/


Nur noch eine Frage, kann man auch eine bestimmt drop chance einstellen?
08/12/2011 12:22 Ranma014#10
Quote:
Originally Posted by Müllmann10 View Post
Hm schein nun doch zu gehen (:

Habe anscheinend was vergessen :/


Nur noch eine Frage, kann man auch eine bestimmt drop chance einstellen?
Ja geht auch. Einfach das XX ersetzen.
Code:
USE [Arcadia]
GO
UPDATE [dbo].[MonsterResource]
SET [drop_percentage_01] = [COLOR="Red"]XX[/COLOR]
WHERE [drop_item_id_01] = -3000129 OR [drop_item_id_01] = -3000152
Erlaubt sind alles Wert von 0 bis 1, also Prozent als Dezimalzahl.
Allerdings solltest du dich an den Orginalwerten orientieren und die gegebenenfalls einfach halbieren vierteln oder was auch immer, damit kann man besser abschätzen wie gut die droppen. Kannst auch durch deine droprate teilen, dann ist der drop bei diesen wieder bei 1x.
Einfach folgendes benutzen und den Faktor anpassen:

Code:
USE [Arcadia]
GO
UPDATE [dbo].[MonsterResource]
SET [drop_percentage_01] = [drop_percentage_01] / [COLOR="Red"]XX[/COLOR]
WHERE [drop_item_id_01] = -3000129 OR [drop_item_id_01] = -3000152
Das geht natürlich beides nicht, wenn jetzt schon alles auf 0 ist.
08/12/2011 12:24 Müllmann10#11
Das heißt ich ich stelle für XX /2 ein und hab die halbe Drop Chance?
08/12/2011 12:26 Ranma014#12
Nicht ganz. Das "teilen-zeichen" steht schon davor. Musst nur noch eine Zahl eingeben.
08/12/2011 12:27 Müllmann10#13
Ok, danke dir werde es mal testen (:

-