adeku015 Posted March 27, 2013 Posted March 27, 2013 We all know that its kinda boring to add attribute xD I found some Auto Attribute by using script in l2 net Credits to Mochitto . You just need to edit the "STONE" And "Item" For sure you are not really dumb not to read the script before using :) // Auto Add Attribute // Server: all // Autor: mochitto // Date: 1. 10. 2010 // Special thanks for L2.NET contributors // rev.: 11 PRINT_TEXT "SCRIPT STARTED!]" INCLUDE "StdLib\Inventory.l2c" DEFINE_GLOBAL ARRAYLIST Inven DEFINE_GLOBAL INT ItemID DEFINE_GLOBAL STRING STONE DEFINE_GLOBAL STRING ITEM // Edit the elemental stone name and name of item STONE = "#$Holy Crystal" ITEM = "#$Pyseal Blade {PvP}" // Main section // =============================== GET_INVENTORY Inven FOREACH A INVENTORY Inven IF Inven.A.NAME == ITEM SLEEP 200 PRINT_TEXT "Found item: +<&Inven.A.ENCHANT&> <&Inven.A.NAME&>" PRINT_TEXT "Elements start in 5 sec." SLEEP 5000 ItemID = Inven.A.ID ADD_ELEMENT ENDIF NEXTEACH PRINT_TEXT "Item <&ITEM&> was not found :(" PRINT_TEXT "SCRIPT STOPED!]" END_SCRIPT FUNCTION ADD_ELEMENT DEFINE INT COUNT 0 WHILE ZERO == ZERO GET_INVENTORY Inven SLEEP 800 FOREACH A INVENTORY Inven IF Inven.A.NAME == STONE COUNT = Inven.A.COUNT USE_ITEM "<&Inven.A.ITEM_ID&>" SLEEP 400 IF COUNT > 1 PRINT_TEXT "Element with <&Inven.A.NAME&>" INJECT "D0 35 00 <&ItemID.GET_HEX32&>" ELSE BREAK 4 ENDIF ENDIF NEXTEACH IF COUNT == 0 BREAK 2 ENDIF SLEEP 25 WEND PRINT_TEXT "<&STONE&> was not found :(" PRINT_TEXT "SCRIPT STOPED!]" END_SCRIPT RETURN VOID
SickMuse Posted March 28, 2013 Posted March 28, 2013 Its says "SCRIP STARTED!" but IG when the element window auto opens, It cancels instead of confirm to add attr and I guess its cuz it doesnt select the item, what should I do in this case? ;p
adeku015 Posted March 30, 2013 Author Posted March 30, 2013 Hmm . Sometimes Ncsoft fvcked out the name of items Like the breastplates(the main body) It says Vorpal Leather Breastplate {PvP} But theres a space after "Breastplate" So you need to include a space after the name of the main body armor Legging helmet gloves and boots is normal . Just the main body Dont include the SA of a weapon . Just the {PvP}
xapox Posted April 3, 2013 Posted April 3, 2013 Nice one sadly it doesnt work for me (security reasons ;P)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now