- 001
- 002
- 003
- 004
- 005
- 006
- 007
- 008
- 009
- 010
- 011
- 012
- 013
- 014
- 015
- 016
- 017
- 018
- 019
- 020
- 021
- 022
- 023
- 024
- 025
- 026
- 027
- 028
- 029
- 030
- 031
- 032
- 033
- 034
- 035
- 036
- 037
- 038
- 039
- 040
- 041
- 042
- 043
- 044
- 045
- 046
- 047
- 048
- 049
- 050
- 051
- 052
- 053
- 054
- 055
- 056
- 057
- 058
- 059
- 060
- 061
- 062
- 063
- 064
- 065
- 066
- 067
- 068
- 069
- 070
- 071
- 072
- 073
- 074
- 075
- 076
- 077
- 078
- 079
- 080
- 081
- 082
- 083
- 084
- 085
- 086
- 087
- 088
- 089
- 090
- 091
- 092
- 093
- 094
- 095
- 096
- 097
- 098
- 099
- 100
procedure TNamePlay.OKBtnClick(Sender: TObject);
var
 reg:treginifile;
 a,s,d,f,g,h,j,k,l,z,x:integer;
begin
if setp.CheckBox1.Checked =true then
playsound('Music\xxx.WAV',0,snd_async);
 if vopros.Easy.Checked=false then
  och.Caption:=inttostr(strtoint(och.caption)+50);
 with gamers do begin
   Reg := TReginifile.Create;
   Reg.RootKey := HKEY_LOCAL_MACHINE;
   with reg do begin
    o1.caption:=readstring('Software\xxx\Gamers\Result','First','');
    o2.caption:=readstring('Software\xxx\Gamers\Result','Two','');
    o3.caption:=readstring('Software\xxx\Gamers\Result','Three','');
    o4.caption:=readstring('Software\xxx\Gamers\Result','Four','');
    o5.caption:=readstring('Software\xxx\Gamers\Result','Five','');
    o6.caption:=readstring('Software\xxx\Gamers\Result','Six','');
    o7.caption:=readstring('Software\xxx\Gamers\Result','Seven','');
    o8.caption:=readstring('Software\xxx\Gamers\Result','Eight','');
    o9.caption:=readstring('Software\xxx\Gamers\Result','Nine','');
    o10.caption:=readstring('Software\xxx\Gamers\Result','Ten','');
    g1.caption:=readstring('Software\xxx\Gamers','First','');
    g2.caption:=readstring('Software\xxx\Gamers','Two','');
    g3.caption:=readstring('Software\xxx\Gamers','Three','');
    g4.caption:=readstring('Software\xxx\Gamers','Four','');
    g5.caption:=readstring('Software\xxx\Gamers','Five','');
    g6.caption:=readstring('Software\xxx\Gamers','Six','');
    g7.caption:=readstring('Software\xxx\Gamers','Seven','');
    g8.caption:=readstring('Software\xxx\Gamers','Eight','');
    g9.caption:=readstring('Software\xxx\Gamers','Nine','');
    g10.caption:=readstring('Software\xxx\Gamers','Ten','');
   end;
 end;
 if password.Text='' then
  raise erangeerror.Create('Вы не ввели имени')
 else begin
  with gamers do begin
   a:=strtoint(o1.caption);
   s:=strtoint(o2.caption);
   d:=strtoint(o3.caption);
   f:=strtoint(o4.caption);
   g:=strtoint(o5.caption);
   h:=strtoint(o6.caption);
   j:=strtoint(o7.caption);
   k:=strtoint(o8.caption);
   l:=strtoint(o9.caption);
   z:=strtoint(o10.caption);
   x:=strtoint(nameplay.och.caption);
   if x>a then begin
    g10.Caption:=g9.Caption;
    o10.Caption:=o9.caption;
    g9.Caption:=g8.Caption;
    o9.Caption:=o8.caption;
    g8.Caption:=g7.Caption;
    o8.Caption:=o7.caption;
    g7.Caption:=g6.Caption;
    o7.Caption:=o6.caption;
    g6.Caption:=g5.Caption;
    o6.Caption:=o5.caption;
    g5.Caption:=g4.Caption;
    o5.Caption:=o4.caption;
    g4.Caption:=g3.Caption;
    o4.Caption:=o3.caption;
    g3.Caption:=g2.Caption;
    o3.Caption:=o2.caption;
    g2.Caption:=g1.Caption;
    o2.Caption:=o1.caption;
    g1.Caption:=nameplay.Password.Text;
    o1.Caption:=nameplay.och.Caption;
   end else if x=a then begin
    g1.Caption:=nameplay.Password.Text;
    o1.Caption:=nameplay.och.Caption;
   end else if x<a then begin
    if x>s then begin
     g10.Caption:=g9.Caption;
     o10.Caption:=o9.caption;
     g9.Caption:=g8.Caption;
     o9.Caption:=o8.caption;
     g8.Caption:=g7.Caption;
     o8.Caption:=o7.caption;
     g7.Caption:=g6.Caption;
     o7.Caption:=o6.caption;
     g6.Caption:=g5.Caption;
     o6.Caption:=o5.caption;
     g5.Caption:=g4.Caption;
     o5.Caption:=o4.caption;
     g4.Caption:=g3.Caption;
     o4.Caption:=o3.caption;
     g3.Caption:=g2.Caption;
     o3.Caption:=o2.caption;
     g2.Caption:=nameplay.Password.Text;
     o2.Caption:=nameplay.och.Caption;
    end else if x=s then begin
     g2.Caption:=nameplay.Password.Text;
     o2.Caption:=nameplay.och.Caption;
    end else if x<s then begin
...