Lineage 2 Tower Forum

Full Version: --==BANHAMMER==--
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This plugin need a correct invalid icon name to work...

    LUA Programming
local invalidItemIcon = "None - None";
 
function BlockItems()
	local result = 0;
	local items = L2TConfig.GetConfig().items;
	local count = items:GetCount();
	for i = 0, count, 1 do
		if (GetItemIcon(i) == invalidItemIcon) then
			local it = items:GetItem(i);
			it.Me.Pickup = false;
			it.Pet.Pickup = false;
			result = result + 1;
		end;
	end;
end;
 
function OnCreate()
	if (IsPremium()) then
		local count = BlockItems();
		ShowToClient("ItemBlocker", "Blocked " .. tostring(count) .. " items");
	else
		ShowToClient("ItemBlocker", "This script works only for premium users");
	end;
end;
 
function OnLoad()
        OnCreate();
end;



And for block custom item:
    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;
end;
 
function OnCreate()
	if (IsPremium()) then
		BlockItem(10648);
	else
		ShowToClient("CustomItemBlocker", "This script works only for premium users");
	end;
end;
 
function OnLoad()
        OnCreate();
end;



Plugins not tested, may have some minor bugs.
i use client pick up and im fine, but some people informed me about getting ban just by having follow on maybe it was caused by making many chars same time from same ip that triggered it tho.
    LUA Programming
function OnLogin()
SCONFIG = L2TConfig.GetConfig();
SCONFIG.items:GetItem(10648).Me.Pickup = false;
end;



send $10 to me =)
14 accounts banned server Chronos, interesting that some were not even being banned in with the party who have been banned.
in my clan have been banned over 30 accounts of some friends, some level 99.
many banned without being connected to the game, with the other banned character within the clanhall, no parameters for this wave of ban, are banning all forms. I'm not connecting with my main character, I'll just plug in the game after the update and without using the tower.
unfortunate, but it's the risk we take.
good luck to all!
dont use same ip, change ip and mac every time u log, change hwid, dont use same pc for boot and for play, dont boot 24/24, dont create 10 accounts in same day and from same ip and start boost xp, dont colect all adena with same char and on the same char and remember is more easy to track u in instances then on open field
I got a static ip from my ISP, how can i change it? I dont see myself calling them every 2 days to manualy change it! :-)

I got 5 PCs connected to router, anything i should change in router setting?

Thx for help as always!
gor one picket baned today on naia
it had pick-up plugin to filter and pick only wanted items
i only started to use the plugin 3 days ago it might have had an item from before that..
once one toon was banned, I am loged off other toons. After few day another toon was banned. So them analyze logs or invizible items.

Also I missed chat and shout commands /pause /cfg ))) may be that reason.
(11-06-2013 12:32 PM)xanya11 Wrote: [ -> ]and remember is more easy to track u in instances then on open field

why?
fox and other ppl...

im took like 2 bans today... just the pick char... probably its that item 10648...

how can set to not pick it up?
Reference URL's