faq/stealth/healing.txt · Last modified: 2020/12/14 08:05 (external edit)
 

Healing

Usually is trained with sparring Sparring.
There is another way to train with changing clothing :

program Healing;
{$Include 'all.inc'}

var
i : Integer;

const
//Type of clothing
weapon = $2394;
bandage = $0E21;
Neck = $236E;
Torso = $2377;
Leg = $236B;

Begin
  while (not Dead) do
  begin
    hungry(1,backpack);
    for i := 0 to 50 do
    begin
      wait(1000);
      undress;
      disarm;
      wait(1000);
      Equipt(RhandLayer,weapon);
      Equipt(NeckLayer,Neck);
      Equipt(TorsoLayer,Torso);
      Equipt(LegsLayer,Leg);
      wait(1000);
      checksave;
    end;
  end;
End.
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki