an dieser Stelle werde ich dir mal weiter helfen, um unseren lieben geskill zu entlasten, da er exakt dasselbe für mich schon erledigt hat
einfach das blau markierte:
<I
for(var i = 0; i < IMirrorController.MirrorCount; i++)
{
if(i != 0)
print(#13#10);
for(var j = 0; j < IMirrorController.Mirror.CrypterCount; j++)
{
print(#13#10 + "<strong>Mirror: </strong><a href=" + IMirrorController.Mirror[I].Crypter[J].Link + ">" + IMirrorController.Mirror[I].Hoster + "</a>");
}
}
I>
durch dieses hier ersetzen:
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<I
for(i = 0; i < IMirrorController.MirrorCount; i++)
{
if(i != 0)
print(#13#10);
switch (i)
{
case 0: print("<strong>Download:</strong> ");
default: print("<strong>Mirror " + IntToStr(I) + ":</strong> ");
}
for(j = 0; j < IMirrorController.Mirror[I].CrypterCount; j++)
{
print(#13#10 + "<strong>Mirror: </strong><a href=" + IMirrorController.Mirror[I].Crypter[J].Link + ">" + IMirrorController.Mirror[I].Hoster + "</a>");
}
}
I>
|
Gruß
und nochmals vielen vielen Dank geskill!