MilaSuperstar
03.05.2017, 11:21
Habe folgendes Problem. Ich möchte das beide Crypter Links zusammen unter einem Hoster Bild angezeigt werden.
Aussehen soll es so:
https://www.szenebox.org/images/_imported/2017/05/4.jpg
Hier zu habe ich zwei Möglichkeiten:
for (i = 0; i < IMirror.Count; i++)
{
for (j = 0; j < IMirror[I].CrypterCount; j++)
{
switch (IMirror[I].Hoster)
{
case "Uploaded.net":
print("https://www.szenebox.org/images/_imported/2017/05/5.jpg \r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )\r\n\r\n");
case "Share-online.biz":
print("https://www.szenebox.org/images/_imported/2017/05/6.jpg \r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )\r\n\r\n");
}
}
}
print("\r\n[/CENTER]");
}
Oder diesen Code evtl könnte man auch hier einfach ne StringReplace Funktion einbauen das eben Mirror 1 durch das Uploaded IMG ersetzt wird und bei Mirror 2 durch das Share-Online Picture usw:
for(i = 0; i < IMirror.Count; i++)
{
if(i != 0)
print("\r\n");
print("\r\nMirror: " + IntToStr(I + 1) + "\r\n");
for(j = 0; j < IMirror[I].CrypterCount; j++)
{
print("\r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )");
}
}
Aussehen soll es so:
https://www.szenebox.org/images/_imported/2017/05/4.jpg
Hier zu habe ich zwei Möglichkeiten:
for (i = 0; i < IMirror.Count; i++)
{
for (j = 0; j < IMirror[I].CrypterCount; j++)
{
switch (IMirror[I].Hoster)
{
case "Uploaded.net":
print("https://www.szenebox.org/images/_imported/2017/05/5.jpg \r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )\r\n\r\n");
case "Share-online.biz":
print("https://www.szenebox.org/images/_imported/2017/05/6.jpg \r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )\r\n\r\n");
}
}
}
print("\r\n[/CENTER]");
}
Oder diesen Code evtl könnte man auch hier einfach ne StringReplace Funktion einbauen das eben Mirror 1 durch das Uploaded IMG ersetzt wird und bei Mirror 2 durch das Share-Online Picture usw:
for(i = 0; i < IMirror.Count; i++)
{
if(i != 0)
print("\r\n");
print("\r\nMirror: " + IntToStr(I + 1) + "\r\n");
for(j = 0; j < IMirror[I].CrypterCount; j++)
{
print("\r\n " + IMirror[I].Crypter[J].Value + " ( + IMirror[I].Crypter[J].Value + )");
}
}