[Help Thread] Please post your questions here.

04/16/2013 18:09 Makenci#1486
gibt es irgendwie eine schnellere metode die skillkarten aus den drops zu nehmen als JEDE einzelne ID/Karte per

USE Arcadia
UPDATE dbo.DropGroupResource
SET
drop_percentage_0x = 0 WHERE drop_item_id_0x = Item_ID

befehl raus zu nehmen ?
04/16/2013 19:06 c1ph3r#1487
Quote:
Originally Posted by Makenci View Post
gibt es irgendwie eine schnellere metode die skillkarten aus den drops zu nehmen als JEDE einzelne ID/Karte per

USE Arcadia
UPDATE dbo.DropGroupResource
SET
drop_percentage_0x = 0 WHERE drop_item_id_0x = Item_ID

befehl raus zu nehmen ?
Also spontan würde ich sagen, ja gibt es...die erfordert aber Grundwissen in C# oder einer anderen Programmiersprache in der du ein Programm schreibst. ;)

Andernfalls nein bzw naja zumindest kannst du mit or mehrere IDs miteinander verbinden, so dass du nur ein Statement pro value hast.

UPDATE dbo.DropGroupResource
SET
drop_percentage_0x = 0
WHERE drop_item_id_0x = Item_ID1
or drop_item_id_0x = Item_ID2
or drop_item_id_0x = Item_ID3
or drop_item_id_0x = Item_ID4
to be continued

Dies musst du dann aber trotzdem für drop_percentage_00 bzw. drop_item_id_00 - drop_percentage_09 bzw. drop_percentage_09 machen.

Du würdest dir aber ein paar "UPDATE dbo.DropGroupResource SET" sparen.
04/16/2013 19:14 Xijezu#1488
Quote:
Originally Posted by c1ph3r View Post
Also spontan würde ich sagen, ja gibt es...die erfordert aber Grundwissen in C# oder einer anderen Programmiersprache in der du ein Programm schreibst. ;)

Andernfalls nein bzw naja zumindest kannst du mit or mehrere IDs miteinander verbinden, so dass du nur ein Statement pro value hast.

UPDATE dbo.DropGroupResource
SET
drop_percentage_0x = 0
WHERE drop_item_id_0x = Item_ID1
or drop_item_id_0x = Item_ID2
or drop_item_id_0x = Item_ID3
or drop_item_id_0x = Item_ID4
to be continued

Dies musst du dann aber trotzdem für drop_percentage_00 bzw. drop_item_id_00 - drop_percentage_09 bzw. drop_percentage_09 machen.

Du würdest dir aber ein paar "UPDATE dbo.DropGroupResource SET" sparen.
Ginge es nicht einfacher, wenn man das über die Dropgroup-ID's löst, wie bei egurgle's Script von damals?
Ich weiß spontan nicht, inwiefern die Meisterklassen-Skillkarten dort gespeichert sind, dürfte aber ähnlich gehen.
04/16/2013 19:20 c1ph3r#1489
Quote:
Originally Posted by Xijezu View Post
Ginge es nicht einfacher, wenn man das über die Dropgroup-ID's löst, wie bei egurgle's Script von damals?
Ich weiß spontan nicht, inwiefern die Meisterklassen-Skillkarten dort gespeichert sind, dürfte aber ähnlich gehen.
Welches meinst du? Das releaste ist für Epic 6.2 das erfordert grundwissen in SQL das zu überarbeiten, dann ist es einfacher das schnell selber zu schreiben. Das greift noch auf die Monsterresource zurück.

Kleiner Ausschnitt ;)

Code:
UPDATE Arcadia.dbo.MonsterResource
set drop_percentage_07 = 1.00,
drop_item_id_07 = -453001,
drop_min_count_07 = 0.7,
drop_max_count_07 = 0.7,
drop_min_level_07 = 0.7,
drop_max_level_07 = 0.7
where (level >= 46 and level <= 75) and not (model like 'beast_bear%' or model like 'beast_ultimatebear' or drop_item_id_07 like '-20%') 
--where drop_item_id_07 = -453001 and (level >= 46 and level <= 75)
04/16/2013 19:30 Xijezu#1490
Quote:
Originally Posted by c1ph3r View Post
Welches meinst du? Das releaste ist für Epic 6.2 das erfordert grundwissen in SQL das zu überarbeiten, dann ist es einfacher das schnell selber zu schreiben. Das greift noch auf die Monsterresource zurück.

Kleiner Ausschnitt ;)

Code:
UPDATE Arcadia.dbo.MonsterResource
set drop_percentage_07 = 1.00,
drop_item_id_07 = -453001,
drop_min_count_07 = 0.7,
drop_max_count_07 = 0.7,
drop_min_level_07 = 0.7,
drop_max_level_07 = 0.7
where (level >= 46 and level <= 75) and not (model like 'beast_bear%' or model like 'beast_ultimatebear' or drop_item_id_07 like '-20%') 
--where drop_item_id_07 = -453001 and (level >= 46 and level <= 75)
Trotz der Diskussion in Skype nochmal:
-453001, wie es in den Script von dir wäre, beinhaltet Skillkarten. Der Rest des Scripts von egurgle die anderen.
Wenn du jetzt einfach
Code:
UPDATE DropGroupResource SET drop_percentage_0x = 0 WHERE id = -453001
machen würdest, anstatt jede Skillkarte einzelnd, wäre es doch schneller & sinnvoller, oder nicht?
04/16/2013 19:33 c1ph3r#1491
Quote:
Originally Posted by Xijezu View Post
Trotz der Diskussion in Skype nochmal:
-453001, wie es in den Script von dir wäre, beinhaltet Skillkarten. Der Rest des Scripts von egurgle die anderen.
Wenn du jetzt einfach
Code:
UPDATE DropGroupResource SET drop_percentage_0x = 0 WHERE id = -453001
machen würdest, anstatt jede Skillkarte einzelnd, wäre es doch schneller & sinnvoller, oder nicht?
Also 1. -453001 sind Necklaces R3 und 2. ja solange die DropIDs sich net aus irgendwelchen Gründen geändert haben, dann wäre das eine halbwegs gute Lösung. Muss ich dir zugestehen :P
04/16/2013 19:48 Xijezu#1492
Quote:
Originally Posted by c1ph3r View Post
Also 1. -453001 sind Necklaces R3 und 2. ja solange die DropIDs sich net aus irgendwelchen Gründen geändert haben, dann wäre das eine halbwegs gute Lösung. Muss ich dir zugestehen :P
Ich habe extra eben noch nachgeschaut, ob diese stimmen, hat sich nichts geändert, somit wäre meine Alternative wohl die bessere. ;p
04/16/2013 19:53 j4ckwr4th#1493
if it would aide in willingness to assist, i do have skype, just pm me if thats a route one of you would be willing to go, im not pc illiterate, just stuck, thanks.
04/16/2013 20:00 ThunderNikk#1494
Quote:
Originally Posted by j4ckwr4th View Post
if it would aide in willingness to assist, i do have skype, just pm me if thats a route one of you would be willing to go, im not pc illiterate, just stuck, thanks.
Double click RappelzCompressV2.exe

Drag the .opt files into the open dialogue box.

They should create a new .eop file in the directories that they are dragged from.

Then after you have dropped them all on the window click OK to close the window.
04/16/2013 20:03 j4ckwr4th#1495
if i could thanks you twice i would...
i know it makes me look absolutely ridiculous, but that was exactly the error... thank you soo much
04/16/2013 20:12 Makenci#1496
kann man das den nicht so machen ????

04/16/2013 20:21 NoobieQuestions#1497
Can anyone provide me with the "Mephisto" spawn ID and/or Mephisto pet card ID, I have already the counter part "Lilith's" pet ID, I just cannot find the Mephisto's.


Thanks anyone who can help :handsdown:
04/16/2013 20:52 Xijezu#1498
Quote:
Originally Posted by Makenci View Post
kann man das den nicht so machen ????

Nein, das wäre falscher SQL-Syntax.

Quote:
Originally Posted by NoobieQuestions View Post
Can anyone provide me with the "Mephisto" spawn ID and/or Mephisto pet card ID, I have already the counter part "Lilith's" pet ID, I just cannot find the Mephisto's.


Thanks anyone who can help :handsdown:
I thought they were custom-pets, weren't they? o0
04/16/2013 20:58 c1ph3r#1499
Quote:
Originally Posted by Xijezu View Post
I thought they were custom-pets, weren't they? o0
You're correct! These pets are custom if he found something he is dumping/stealing around in the resource files of a pserver

My opinion: These pets are custom work and shouldn't be used/dumped by another server. Create your own pet! Modelfiles are called:

demon_mephistoLv1.cob
demon_mephistoLv3.cob
demon_lilithLv1.cob
demon_lilithLv2.cob
demon_lilithLv3.cob
04/16/2013 21:04 NoobieQuestions#1500
Quote:
Originally Posted by Xijezu View Post


I thought they were custom-pets, weren't they? o0
Custom pets found in korean resource files, with implanted skills, skins, evolves, skill icons, skill descriptions?

After speaking to a forum mod on us rappelz, the Lilith and Mephisto are future updates not creations of pserv devs


(or atleast that is the case with the Lilith)