Lineage 2 Tower Forum

Full Version: striped client
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6
(07-22-2015 16:32 PM)kerberos464 Wrote: [ -> ]you can use this simple plugin to prevent showing Mega Strike skill animation, tried, works.

    LUA Programming
function OnCreate()
	Event_PacketUnBlock(0x48, -1, 3);
end;
 
 
function OnIncomingPacket(packet)
	packet:SetOffset(0);
	if (packet:GetID() == 0x48) then
 packet:ReadInt(4);
 packet:ReadInt(4);
 packet:ReadInt(4);
 if (packet:ReadUInt(4) == 10260) then -- Mega Strike
 packet:BlockMe();
 end;
	end;
end;


Nice
la2s.1.11.b
GF ((working)less lag, faster loading, less freazs)
3rd profesion (works)
ketra orc aoutpost (works)
GoG (works)
Fortuna (works)
Kartia (works)
lvling 1-70(all works, no erors)
Jumping (i will fiks soon as i kan)
Mega strike use plugin in tower,
Code:
function OnCreate()
    Event_PacketUnBlock(0x48, -1, 3);
end;


function OnIncomingPacket(packet)
    packet:SetOffset(0);
    if (packet:GetID() == 0x48) then
packet:ReadInt(4);
packet:ReadInt(4);
packet:ReadInt(4);
if (packet:ReadUInt(4) == 10260) then -- Mega Strike
packet:BlockMe();
end;
    end;
end;
other zones koming up, test as soon as i kan!!
Pages: 1 2 3 4 5 6
Reference URL's