ameru Posted November 20, 2015 Posted November 20, 2015 hi im looking for an auto enchant script for adrenaline!
3n3mY Posted November 23, 2015 Posted November 23, 2015 Hey. I am playing on http://l2adrenalin.com/ , it's a multicraft and I made my tts script, changed it cause all npcs are nearby. but my l2 crashes every time I run the script. (i'm 90% sure it's cause of bypasses (tried removing it from script - runs to npcs, but don't talk to them, as it supposed to do without bypass and does not crash)). Is there any way to solve this problem?
valentin Posted November 24, 2015 Posted November 24, 2015 (edited) dont click I'll deliver you..... put dialog adrenaline and error line reed Edited November 24, 2015 by valentin
Anitah Posted November 25, 2015 Posted November 25, 2015 dont click I'll deliver you..... put dialog adrenaline and error line reed Maybe if u write code... xD
jorvus Posted December 4, 2015 Posted December 4, 2015 (edited) Hi, im working on an enchant script and i try to equip an unenchanted item even if i have some already enchanted in my inventory. How can i equip an unenchanted item instead of the first item in my inventory? I tried this: Engine.UseItem ('Elegia Leather Breastplate', Item.EnchantLevel=0);//if item is not equiped do equip unenchanted but this does not work. can someone help? Edited December 4, 2015 by jorvus
adr.bot Posted December 5, 2015 Posted December 5, 2015 Hi, im working on an enchant script and i try to equip an unenchanted item even if i have some already enchanted in my inventory. How can i equip an unenchanted item instead of the first item in my inventory? I tried this: Engine.UseItem ('Elegia Leather Breastplate', Item.EnchantLevel=0);//if item is not equiped do equip unenchanted but this does not work. can someone help? maybe this help if inventory.user.byid(123, item) and (item.enchantlevel = 0) then begin engine.useitem(item); end;
jorvus Posted December 5, 2015 Posted December 5, 2015 maybe this helpif inventory.user.byid(123, item) and (item.enchantlevel = 0) then beginengine.useitem(item);end; First thanks for your fast reply, your great! The problem is, i do have enchanted items in my inventory and as i understand, this code checks if there are ANY enchanted items of the same ID and if yes then it does not use the item. What i want is, to enchant lets say 20 items in a row to +7. If the first item is +7 then use an unenchanted item. Any help is appreciated , meanwhile ill sleep over it, maybe that helps^^
adr.bot Posted December 5, 2015 Posted December 5, 2015 First thanks for your fast reply, your great! The problem is, i do have enchanted items in my inventory and as i understand, this code checks if there are ANY enchanted items of the same ID and if yes then it does not use the item. What i want is, to enchant lets say 20 items in a row to +7. If the first item is +7 then use an unenchanted item. Any help is appreciated , meanwhile ill sleep over it, maybe that helps^^ i checked that, and i dont know how use item with same id
GeoPrey-qHp Posted December 11, 2015 Posted December 11, 2015 Hello there, Im looking for macro ussage and/or player target using Adrenaline scripting language (Npc Buffer is Player type and doesn't have ID) any help? :D
adr.bot Posted December 11, 2015 Posted December 11, 2015 Hello there, Im looking for macro ussage and/or player target using Adrenaline scripting language (Npc Buffer is Player type and doesn't have ID) any help? :D engine.settarget('Npc Buffer'); engine.movetotarget; delay(1000); engine.attack; probably must work
GeoPrey-qHp Posted December 11, 2015 Posted December 11, 2015 engine.settarget('Npc Buffer'); engine.movetotarget; delay(1000); engine.attack; probably must work The only thing I needed was engine.settarget('Npc Buffer'); Thanks :D
varrakuda Posted December 11, 2015 Posted December 11, 2015 (edited) Hi, first of all, sorry for my English. I try to learn Delphi ... but my char looks like a headless chicken. 1) When my lvl up to 20 or 40 I can change my class in a "support dialogue," with the symbol "?". If this can be done with the scripts? I do not know how to open this dialog box. 2) What is the best way to know what city am I? I try to use 4 points, to a large area around the city and compare with my current position, but not working well. 3) if possible run scripts step by step? The same that “f5” and “f8” in VB. 4) if possible open mails and take all? Ty for reading. Edited December 11, 2015 by varrakuda
cuppacoffee Posted December 11, 2015 Posted December 11, 2015 Hi, first of all, sorry for my English. I try to learn Delphi ... but my char looks like a headless chicken. 1) When my lvl up to 20 or 40 I can change my class in a "support dialogue," with the symbol "?". If this can be done with the scripts? I do not know how to open this dialog box. 2) What is the best way to know what city am I? I try to use 4 points, to a large area around the city and compare with my current position, but not working well. 3) if possible run scripts step by step? The same that “f5” and “f8” in VB. 4) if possible open mails and take all? Ty for reading. 1: depends on what type of dialogue box it is. If it's tutorial window no. If dialogue box, yes. Engine.DlgSel('whatever') 2: You gotta have spawnpoints in all cities/the city you know you will be in. Eg. if you soe from somewhere near Giran you will end up in one of the n spawnpoints in Giran. See adr scripting guide for how to use 'inrange' command. 3: yes. Again, see scripting manual. Hint: QuestStatus 4: no
varrakuda Posted December 11, 2015 Posted December 11, 2015 (edited) 1: depends on what type of dialogue box it is. If it's tutorial window no. If dialogue box, yes. Engine.DlgSel('whatever') 2: You gotta have spawnpoints in all cities/the city you know you will be in. Eg. if you soe from somewhere near Giran you will end up in one of the n spawnpoints in Giran. See adr scripting guide for how to use 'inrange' command. 3: yes. Again, see scripting manual. Hint: QuestStatus 4: no 1: ok now i open the question but imposible select class :S engine.openquestion; delay(500); engine.dlgsel('Orc Raider.'); delay(500); engine.dlgsel('Orc Raider'); delay(500); engine.dlgsel(1); delay(500); engine.bypasstoserver ('Orc Raider.'); delay(500); engine.bypasstoserver ('bypass -h Orc Raider.'); delay(500); engine.bypasstoserver ('-h Orc Raider.'); or https://imageshack.us/i/pad6JLnwj 2: ok 3: i don't understand :S 4: ok Ty a lot Edited December 11, 2015 by varrakuda
adr.bot Posted December 11, 2015 Posted December 11, 2015 1: ok now i open the question but imposible select class :S engine.openquestion; delay(500); engine.dlgsel('Orc Raider.'); delay(500); engine.dlgsel('Orc Raider'); delay(500); engine.dlgsel(1); delay(500); engine.bypasstoserver ('Orc Raider.'); delay(500); engine.bypasstoserver ('bypass -h Orc Raider.'); delay(500); engine.bypasstoserver ('-h Orc Raider.'); 2: ok 3: i don't understand :S 4: ok Ty a lot i dont see screen reupload
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