Lineage 2 Tower Forum

Full Version: Ho ho ho, time for farming gift from NCSOFT Santa Claus
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
whatever server i can join and see what it really drops
@SimonHM or someone, it is safe to use only pick up table of xcfg unchecking all items and letting just nectar, mp herbs and power herb, instead of using your plugin?

@ClockMan is there some way to set disabled as default on every item not in list so every new item wich i didnt uncheck couse it wasnt on my items list will not be picked up?
@Tuxevil: I use both Smile
(My plugin is used for detecting items)
i just "installed" this clockman's plugin

    LUA Programming
function BlockItem(itemId)
	local item = L2TConfig.GetConfig().items:GetItem(itemId);
	if (item ~= nil) then
			item.Me.Pickup = false;
			item.Pet.Pickup = false;
	end;
	ShowToClient("CustomItemBlocker", "Item 10648 blocked");
end;
 
function OnCreate()
	if (IsPremium()) then
		BlockItem(10648);
	else
		ShowToClient("CustomItemBlocker", "This script works only for premium users");
	end;
end;
 
function OnLoad()
        OnCreate();
end;



i hope it works couse im lvl my main char and i need to pick up mp herb, power herb and ofc nectar

those are the only 3 items checked to pick up in my /xcfg and ofc 10648 item is not in the list so i cant disable pickup manually

im saying my prayers that tomorrow i will not be banned
Anyone know a "name" of this item ?
i have not seen it yet and hope to not see it Tongue

@ClockMan i just made a small improvent to your plugin, i would like that you see it and give some feedback if you have, ty

http://forum.l2tower.eu/thread-plugin-fo...-inventory
Bot bans items with no "name", to check if all is correct Need output from game.
You can get any item name by using script function, GetItemName/GetItemIcon
You don't need to have such item in inv
Pages: 1 2 3
Reference URL's