Lineage 2 Tower Forum

Full Version: Can't update to 1.4.1.127
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Updated to 127 and working fine.

Only have 2 plugins that are NOT working: Auto accept summon and Autopin

The Autopin is not giving any error and lets me start the game but not inputing the pin...

The autoaccept summon is giving me an error for the packets, click ok and can load the game...

Anyone got those 2 fixed and working?
useautopin thats on forum
(08-01-2014 19:27 PM)benbt91 Wrote: [ -> ]use search and check toptic
mega.co.nz
link 1
mediafire
link 2

your version start... but i have this error again
http://forum.l2tower.eu/thread-client-crash-v1-4-1-126

so also with 1.4.1.127
(08-01-2014 21:20 PM)ClockMan Wrote: [ -> ]useautopin thats on forum



I did and not working. I have 2 versions with 2 different packets and none of them are working. 1 is the one posted on forum and the other is an older one that was still working on my laptop before Ertheia...

this one is the older one:


    LUA Programming
function OnCreate()
	Event_PacketUnBlock(0xFE,266,3);
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() == 266) and (packet:ReadInt(4) == 1) then
 
AccName = string.lower(GetAccountName());	-- Convert account name to low string;	
 
 if (AccName == "xxxxxx") then
 packet:BlockMe();
 pinSend("xxxxxx");
 end;
 
	end;
end;



This one is the same as posted on forum:

    LUA Programming
function OnCreate()
	Event_PacketUnBlock(0xFE,0xA, 0x1);
end;
 
function pinSend(data)
	kkk = PacketBuilder();
	kkk:AppendInt(0xD0,1);
	kkk:AppendInt(0xA7,2);
	kkk:AppendString(data); -- your pin
	SendPacket(kkk);
end;
 
function OnIncomingPacket(packet)
	packet:SetOffset(0)
	if (packet:ReadInt(1) == 1) then 
 
GetAccountName = string.lower(GetAccountName());	-- Convert account name to low string;	
 
 if (GetAccountName == "xxxxxx") then
 packet:BlockMe();
 pinSend("xxxxxx");
 end;
 
	end;
end;

I updated it but i still cant open it. Every time i start L2 Tower it crashed saying it stopped working.
By the way ty fox for closing my thread without giving a solution reposting things i already read doesnt help at all.
It's now working... But getting lot of criticals at random time...

Client can stay up 1h and sometimes 10 minutes...

I even emptied my plugin folder and not using any script and still getting crit errors...
sr.adm if possible provide the link to update the file to dsetup.dll this update 1.4.1.127
same problem here =\
Pages: 1 2
Reference URL's