25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
279 B

  1. var xx,yy,zz:string;
  2. begin
  3. xx:=inttostr(GetX);
  4. yy:=inttostr(round(intpower(2,getz-1)-GetY)-1);
  5. zz:=inttostr(GetZ-1);
  6. while length(xx)<8 do xx:='0'+xx;
  7. while length(yy)<8 do yy:='0'+yy;
  8. while length(zz)<2 do zz:='0'+zz;
  9. ResultURL:=GetUrlBase+xx+','+yy+','+zz;
  10. end.