Jump to content

Looking For Adrenaline Auto Enchant Script +Guide How It Use It Pay 3Eu For That


lordas12346

Recommended Posts

From tower scripts :)

-- EDIT THIS TWO LINES WITH ITEM AND STONE NAME.
itemname = "Vesper Shoes"
stonename = "Wind Stone"
delay = 1000 -- Delay (in ms) between actions, lower if you want it faster, 1s seems ok tho.
 
 
-- DONT EDIT ANYTHING BELOW THIS LINE IF YOU DON'T KNOW WHAT YOU'RE DOING.
itemid = nil
stoneid = nil
stonecount = 0
 
invList = GetInventory();
for item in invList.list do
if tostring(item.Name) == itemname then
itemid = item.objectId
ShowToClient("Item Found",tostring(item.Name))
end
if tostring(item.Name) == stonename then
stoneid = item.displayId
stonecount = item.ItemNum
ShowToClient("Stone Found",tostring(item.Name))
end
end;
repeat
if itemid ~= nil then
if stoneid ~= nil then
if stonecount > 0 then
stonecount = stonecount - 1
UseItem(stoneid)
Sleep(delay)
packet = PacketBuilder();
packet:AppendInt(0xD0,1);
packet:AppendInt(0x35,2);
packet:AppendInt(itemid,4);
SendPacket(packet);
else
ShowToClient("AutoElement","Out of stones!")
break
end
else
ShowToClient("AutoElement","Stone not found")
break
end
 
else
ShowToClient("AutoElement","Item not found.")
break
end
until false
Link to comment
Share on other sites

 

-- EDIT THIS TWO LINES WITH ITEM AND STONE NAME.
itemname = "Vesper Shoes"
stonename = "Wind Stone"
delay = 1000 -- Delay (in ms) between actions, lower if you want it faster, 1s seems ok tho.
 
 
-- DONT EDIT ANYTHING BELOW THIS LINE IF YOU DON'T KNOW WHAT YOU'RE DOING.
itemid = nil
stoneid = nil
stonecount = 0
 
invList = GetInventory();
for item in invList.list do
if tostring(item.Name) == itemname then
itemid = item.objectId
ShowToClient("Item Found",tostring(item.Name))
end
if tostring(item.Name) == stonename then
stoneid = item.displayId
stonecount = item.ItemNum
ShowToClient("Stone Found",tostring(item.Name))
end
end;
repeat
if itemid ~= nil then
if stoneid ~= nil then
if stonecount > 0 then
stonecount = stonecount - 1
UseItem(stoneid)
Sleep(delay)
packet = PacketBuilder();
packet:AppendInt(0xD0,1);
packet:AppendInt(0x35,2);
packet:AppendInt(itemid,4);
SendPacket(packet);
else
ShowToClient("AutoElement","Out of stones!")
break
end
else
ShowToClient("AutoElement","Stone not found")
break
end
 
else
ShowToClient("AutoElement","Item not found.")
break
end
until false

 

What about enchant script? :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...