Facebook
From Adrian, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 187
  1. Const
  2.   Manarune_ID = 3182
  3.   MinMana = 2500
  4.   MaxMana = 3030
  5.  
  6. while not terminated do
  7. begin
  8.   UpdateWorld;
  9.   if Self.Mana <= MinMana then
  10.   while Self.Mana < MaxMana do  
  11.   begin
  12.     if terminated then break;
  13.     self.containers.useitemwithself(ManaRune_ID);
  14.     sleep(200);
  15.     UpdateWorld;
  16.   end;
  17.   sleep(200);
  18. end;