L2Tower Discord
Let's keep the community alive with discord.
Discussions about plugins and scripts
L2Tower Discord
Thread Rating:
- 0 Vote(s) - 0 Average
- 1
- 2
- 3
- 4
- 5
delete d grade items
|
Author |
Message |
dekinfrost
Expired VIP Member
 
Posts: 6
Joined: Oct 2015
Reputation: 0
Version:
1.4.3.143
|
delete d grade items
Tried about every script on here, and tried editing some of the old proof script's and all of them have line exceptions in the coding.
yea yea, im a VIP user, and my xcfg doesn't read my pickit files, correct, hmmm worth paying for? anyway...
anyone have a script they use to delete the junk drops that overweight ur character's at isle of souls for example..
Getting like 5 manticore drops every 30 mins.. Please Help
|
|
11-10-2015 06:06 AM |
|
rORUMI
Expired VIP Member
 
Posts: 278
Joined: May 2014
Reputation: 50
Version:
1.4.2.142
|
RE: delete d grade items
This is a basic script, i'm use it at GF to delete proof of survive. You need to be VIP.
Only Add the list of id items to delete.
LUA Programming
-- L2TOWER:LUA | repeat delete selected items from inventory
ShowToClient("GOD","AutoDel item: Enabled!");
function DeleteItems(ItemId)
local invList = GetInventory();
for item in invList.list do
if(item.displayId == ItemId) then
DeleteItem(item.objectId, item.ItemNum);
ShowToClient("GOD","Item found and delete!")
end;
end
end;
repeat
DeleteItems(34898); -- Proof of Survival item ID
Sleep(1000)
--DeleteItems(xxxx); -- Item ID
--Sleep(1000)
--DeleteItems(xxxx); -- Item ID
--Sleep(1000)
Sleep(10*1000); -- 10 sec
until false;
|
|
11-10-2015 06:52 AM |
|
dekinfrost
Expired VIP Member
 
Posts: 6
Joined: Oct 2015
Reputation: 0
Version:
1.4.3.143
|
RE: delete d grade items
Im no longer getting a script error with this, but it seems the item ID's are off for the older stuff? is there anyway to see the ID of items in ur inventory
Thanks a ton for this!
|
|
11-10-2015 06:57 AM |
|
User(s) browsing this thread: 1 Guest(s)