L2 Quest Script: Possessor of a Precious Soul -1

09/20/2010 10:48 ~Rigo~#1
Anyone have the script for the mixing of materials?

I'm new and I can't find it q.q

L2 Walker or L2Net is equals

Thx
09/20/2010 18:27 waterflyfire#2
if you use walker you can, ammm.. record it? :D
09/21/2010 02:06 ~Rigo~#3
INCLUDE StdLib\inventory.l2c
PRINT_TEXT "STARTING SCRIPT"
DEFINE ARRAYLIST full_inventory 0
GET_INVENTORY full_inventory
DEFINE INT moonstoneshard_id 6013
DEFINE INT volcanicash_id 6018
DEFINE INT moondust_id 6023
DEFINE INT quicksilver_id 6019
DEFINE INT mss_count 0
DEFINE INT va_count 0
DEFINE INT md_count 0
DEFINE INT qs_count 0
ITEM_COUNT mss_count "<&moonstoneshard_id&>"
ITEM_COUNT va_count "<&volcanicash_id&>"
ITEM_COUNT md_count "<&moondust_id&>"
ITEM_COUNT qs_count "<&quicksilver_id&>"

WHILE mss_count > 9 && va_count >= 1
IF mss_count > 9 && va_count >= 1
TARGET_SELF
TARGET_NEAREST_NAME "Alchemists Mixing Urn"
SLEEP 500
TALK_TARGET
SLEEP 500
NPC_DIALOG "bypass -h npc_<&TARGET_ID&>_Quest"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents U_I_Insert"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents x_2_I_6013"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents U_C_Insert"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents x_1_C_6018"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents 31149-5.htm"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents tmp_1"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents 31149-6.htm"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
ITEM_COUNT mss_count "<&moonstoneshard_id&>"
ITEM_COUNT va_count "<&volcanicash_id&>"
ENDIF
WEND
PRINT_TEXT "FINISHED MIXING MOON DUST"
SLEEP 1000
PRINT_TEXT "STARTING TO CREATE LUNARGENTS"
WHILE md_count > 9 && qs_count >= 1
IF md_count > 9 && qs_count >= 1
TARGET_SELF
TARGET_NEAREST_NAME "Alchemists Mixing Urn"
SLEEP 500
TALK_TARGET
SLEEP 500
NPC_DIALOG "bypass -h npc_<&TARGET_ID&>_Quest"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents U_I_Insert"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents x_2_I_6023"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents U_C_Insert"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents x_1_C_6019"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents 31149-5.htm"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents tmp_1"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents 31149-6.htm"
SLEEP 500
NPC_DIALOG "bypass -h Quest 373_SupplierOfReagents urn"
SLEEP 500
ITEM_COUNT md_count "<&moondust_id&>"
ITEM_COUNT qs_count "<&quicksilver_id&>"
ENDIF

WEND
PRINT_TEXT "LUNARGENTS COMPLETE"
PRINT_TEXT "ENDING SCRIPT"
END_SCRIPT

Is It a good script for L2 Net??