ďťż

[NG]skrypt pożera pamięć

PRzeSteR

[NG]skrypt pożera pamięć
  Witam, jestem użytkownikiem bota Ng i mam problem z tym skryptem
Cytat:
Const
NumberOfMonsters = 3 /// Ile potworow do zmiany broni
StrongWeapon = 3297 /// ID Twojej lepszej broni
WearWeapon = 3291 /// ID Twojej slabszej broni
function GetItemFromOpenBackpack(ID: integer): TItem;
var
y: integer;
begin
Result := nil;
for x := 0 to Self.Containers.Count - 1 do
begin
if x >= Self.Containers.Count then Break;
for y := 0 to Self.Containers.Container[x].Count - 1 do
begin
if y >= Self.Containers.Container[x].Count then Break;
if Self.Containers.Container[x].Item[y].ID = ID then
begin
Result := Self.Containers.Container[x].Item[y];
Exit;
end;
end;
end;
end;
function CountMonstersBesideYou:Integer;
begin
Result := 0;
UpdateWorld;
for i := 0 to creatures.Count -1 do
begin
if i >= Creatures.Count then break
for x := -1 to 1 do
begin
if x >= 2 then break
for y := -1 to 1 do
begin
if y > 1 then break;
if Creatures.Creature[i].NPC then
if (Creatures.Creature[i].x = Self.X +x) and (Creatures.Creature[i].y = Self.y + y) and (Creatures.Creature[i].Z = Self.Z) then
Result := Result + 1;
end;
end;
end;
end;
while not terminated do
begin
UpdateWorld;
if CountMonstersBesideYou >= NumberOfMonsters then
begin
if Self.RightHand.ID <> StrongWeapon then
begin
Boots := GetItemFromOpenBackpack(StrongWeapon);
if Boots <> nil then
Boots.MoveToBody(Self.RightHand,0);
else Self.Displaytext('Strong Weapon werent found in open backpack!');
end;
end;
if CountMonstersBesideYou < NumberOfMonsters then
begin
if Self.RightHand.ID <> WearWeapon then
begin
Boots := GetItemFromOpenBackpack(WearWeapon);
if Boots <> nil then
Boots.MoveToBody(Self.RightHand,0);
else Self.Displaytext('Nie ma broni albo plecaka nie otworzyles czopie... Powies sie!');
end;
end;
End;
Gdy wciskam Excute Script komputer od razu zamula i nic nie da się robić a po jakimś czasie brakuje pamięci wirtualnej i Tibia wraz z botem się wyłączają. Denerwuje mnie to, raz już przez to padłem, na marne całą noc pracuje komputer a ja nawet nie wiem, że albo postać padła jest wylogowana i prąd idzie w błoto.
Bardzo bym prosił o naprawienie tego skryptu.
P.S. Skrypt ten zmienia broń na lepszą gdy podejdzie do Ciebie 3 potwór (przydatny do skillowania na nPVP).
Pozdrawiam, ArteQ



  :curse::curse: Odświeżam :curse::curse:

  :curse::curse: Odświeżam :curse::curse:
Copyright (c) 2009 PRzeSteR | Powered by Wordpress. Fresh News Theme by WooThemes - Premium Wordpress Themes.