Lineage 2 Tower Forum

Full Version: [Version 125] PickUp not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
All working fine, but dc every 20 - 30 min.... Confused
Any solution for pickup pls?
@ClockMan
any autopin work ? at 126 ?
    LUA Programming
function OnCreate()
	Event_PacketUnBlock(0xFE,0xA,0x1);
end;
 
function pinSend(data)
	kkk = PacketBuilder();
	kkk:AppendInt(0xD0,1);
	kkk:AppendInt(0xAB,2);
	kkk:AppendString(data); -- your pin
	SendPacket(kkk);
end;
 
function OnIncomingPacket(packet)
	packet:SetOffset(0)
	if (packet:GetID() == 0xFE) and (packet:GetSubID() == 0xA) and (packet:GetSubID2() == 0x1) and (packet:ReadInt(4) == 1) then
 
AccName = string.lower(GetAccountName());	-- Convert account name to low string;	
 
 if (AccName == "besyulever@gmail.com") then
 packet:BlockMe();
 pinSend("111000");
 end;
 
 if (AccName == "acc1") or (AccName == "acc2")	then
 packet:BlockMe();
 pinSend("pin");
 end;
	end;
end;



any one know how to change new packet to work with version 126 ?
@ClockMan can u check it ? Big Grin
ty
(07-31-2014 18:29 PM)olaszosan1 Wrote: [ -> ]Any solution for pickup pls?

OK for me, pick up working now
pickup still not working with me
use version 126
Pages: 1 2
Reference URL's