Forum Tibia.pl

Forum Tibia.pl (http://forum.tibia.pl//index.php)
-   Filmy (http://forum.tibia.pl//forumdisplay.php?f=30)
-   -   115 Ek from Guardia On Annihilator Room Quest. Film wart obejrzenia<!> (http://forum.tibia.pl//showthread.php?t=152137)

OzunMaster 27-10-2007 02:59

115 Ek from Guardia On Annihilator Room Quest. Film wart obejrzenia<!>
 
http://tibicams.tibianetwork.net/en/movies/show/32929

Skanujcie se do woli, plik czysty jak łza.
Film warty obejrzenia, ładna akcja, i mała niespodzianka :)

Prosze Komentowac :D:baby:

Helmen 27-10-2007 04:10

Nawet nieźle im to szło i jeszcze ta niespodzianka!
Na końcu anulujcie trade albo dostaniecie debuga! :D

paluch89 27-10-2007 10:33

@up

trojan, keylogger, wirus w linku do screenshota.

Ban plz.

Katan 27-10-2007 11:13

W screenshota nie wchodzić

A co do filmu:

do bekowy typek ;D
jak broniego jechał;D

i jeszcze mms:D

Duch Guardi 27-10-2007 11:17

eee jeśli ktoś wlazłby w ten link ale nie wczytało by mu całej strony to ma keyloga ??
co do filmu nice :D

Shor'tugal 27-10-2007 11:26

@up, jesli pokazało Ci sie okienko z pytaniem czy sciągnąć plik i niezaakceptowałeś to nie masz:)

Harpun 27-10-2007 12:41

PHP Kod:

*
 * 
The Annihilator Annihilator v0.0.2by Toor
 
*
 * 
This script is intended to be used at the Annihilator questSucces is
 
not guaranteed. Use it at your own riskAll you have to do is to change
 
the settings belowIt will automatically change SSA's and might rings
 * if you want it to. It will automatically attack the first demon, and
 * after it'
s dead the second demon with the weapon of your choice.
 *
 * 
Note that you need to open ALL bps you have items in you wish to use.
 * 
To open a lot of backpacks first open your main backpackMinimize your
 
equipment windowOpen all needed backpacks in a new window and minimize
 
themFinallyminimize your main backpack.
 *
 * 
This script has been testedIt will change weapons/rings/amulets AND heal.
 * 
Let me know if you encounter any problems.
 *
 *)

const

  
MightRing_ID 3048
  
Elven_ID     3082;
  
StoneSkin_ID 3081;
  
IceRapier_ID 3284;
  
UH_ID        3160;
  
(* 
BEGIN CONFIGURATION SECTION *)

  
use_might 1;  // Use might rings. Change to 1 if you use them.
  
use_ssa   0;  // Use stone skin amulets. Change to 1 if you use them.
  
use_elven 0;  // Use elven amulets. Change to 1 if you use them.
  
use_ice   1;  // Use ice rapiers. Change to 1 if you use them.
  
use_left  0;  // Use left hand for weapons
  
use_right 1;  // Use right hand for weapons

(* END OF CONFIGURATION SECTION - DO NOT CHANGE ANYTHING BELOW! *)

Function 
GetItemFromOpenBackpack(IDinteger): TItem;
var
  
xinteger;
  
yinteger;
begin
  Result 
:= nil;
  for 
:= 0 to Self.Containers.Count do
  
begin
    
if >= Self.Containers.Count then Break;
    for 
:= 0 to Self.Containers.Container[x].Count do
    
begin
      
if >= 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;

Procedure CheckDemons;
var
  
int demons;
begin
  demons 
:= 0;
  for 
:= 0 to Creatures.Count do
  
begin
    
if >= Creatures.Count then Break;
    if (
Creatures.Creature[x].Name 'Demon'then
    begin
      demons 
:= demons 1;
      
// If there's 5 demons left, one demon is down. Locate the blocking demon and keal him.
      // If there's 6, attack the first demon.
      
if demons 5 then begin
        
if (Creatures.Creature[x].33223 or Creatures.Creature[x].33224) and (Creatures.Creature[x].Attacking Falsethen Creatures.Creature[x].Attacking := True;      
      
end
      
else if demons 6 then begin
        
if (Creatures.Creature[x].33223) and (Creatures.Creature[x].Attacking Falsethen Creatures.Creature[x].Attacking := True;       
      
end;
    
end;
  
end;
end;

Procedure CheckSelf;
begin
  CheckDemons
;
  
// Moves a might ring to the ring spot if it's empty.
  
if use_might then
  begin
    
if Self.Ring.ID <> MightRing_ID then
    begin
       Ring 
:= GetItemFromOpenBackpack(MightRing_ID);
       if 
Ring <> nil then Ring.MoveToBody(Self.Ring,0);
       
sleep(100);
    
end;
  
end;
  if 
use_ssa then
  begin
    
if Self.Amulet.ID <> StoneSkin_ID then
    begin
      Amulet 
:= GetItemFromOpenBackpack(StoneSkin_ID);
      if 
Amulet <> nil then Amulet.MoveToBody(Self.Amulet,0);
      
sleep(100);
    
end;   
  
end
  
else
  
begin
    
if use_elven then
    begin
      
if Self.Amulet.ID <> Elven_ID then
      begin
        Amulet 
:= GetItemFromOpenBackpack(Elven_ID);
        if 
Amulet <> nil then Amulet.MoveToBody(Self.Amulet,0);
        
sleep(100);
      
end;
    
end;  
  
end;
  if 
use_ice then
  begin
    
if Self.RightHand.ID <> IceRapier_ID then
    begin
      Rapier 
:= GetItemFromOpenBackpack(IceRapier_ID);
      if 
use_right then
      begin
        
if Rapier <> nil then Rapier.MoveToBody(Self.RightHand0);
        
sleep(100);
      
end
      
else
      
begin
        
if Rapier <> nil then Rapier.MoveToBody(Self.LeftHand0);      
        
sleep(100);
      
end;
    
end;  
  
end;
  
Rune := GetItemFromOpenBackpack(UH_ID);
  if 
Rune <> nil then
  begin
    Rune
.UseWithGround(Self.XSelf.YSelf.Z);
    
Sleep(100);
  
end
end;
 
While 
not Terminated do
begin
  UpdateWorld
;
  
CheckSelf;
  
Sleep(1000); 
end


Gucias 27-10-2007 13:06

Dralasu123 - to belzebubek czy jakoś tak , miał identyczny obrazek i prowadził do tego samego gówna. wniosek - po dostaniu bana belzedupek zrobił sobie nowe konto, a że ma NEO to ma zmienne IP
zobaczcie, że draulus napisał posta w każdym temacie prawie -.-

OzunMaster 27-10-2007 17:13

Ale o co wam chodzi z tym keyloggerem bo nie czaje? tu nie ma zadnego linku do zadnego screenshoota :S

prosze o wyjaśnienie :]

Etoric 27-10-2007 17:24

Cytuj:

Oryginalnie napisane przez OzunMaster (Post 1714639)
Ale o co wam chodzi z tym keyloggerem bo nie czaje? tu nie ma zadnego linku do zadnego screenshoota :S

prosze o wyjaśnienie :]

może dlatego, że został już usunięty?:S

OzunMaster 27-10-2007 17:25

Sorka mój błąd ;] dobrze nie popatrzyłem w temat :D


Wszystkie czasy podano w strefie GMT +2. Teraz jest 05:54.

Powered by vBulletin 3