1. Dashboard
  2. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  3. Forenregeln
  4. Forum
    1. Unerledigte Themen
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. AutoIt.de - Das deutschsprachige Forum.
  2. Mitglieder
  3. MrB

Beiträge von MrB

  • UDPRecv Problem

    • MrB
    • 8. April 2010 um 22:00

    Hi,

    Muss mal die Fachleute fragen. Ich sende per UDPSend einen Befehle an einen Server und warte auf Antwort. Leider kommt die Antwort in mehreren Stücke, also Schleife rein und warten. Aber egal wie ich es mache, mir gehen einzelne Stücke verloren.
    Mal das Script:

    Spoiler anzeigen
    [autoit]


    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <EditConstants.au3>
    $ip = "****"
    $port = "****"

    [/autoit] [autoit][/autoit] [autoit]

    $gui = GUICreate("test", 880, 600, 0, 0)
    $server_log = GUICtrlCreateEdit("", 0, 0, 880, 600, BitOR($WS_VSCROLL, $ES_MULTILINE))

    [/autoit] [autoit][/autoit] [autoit]

    GUISetState(@SW_SHOW)

    [/autoit] [autoit][/autoit] [autoit]

    srecv()

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $msg = GUIGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
    Exit
    EndSelect
    WEnd

    [/autoit] [autoit][/autoit] [autoit]

    Func srecv()
    $time = 0
    UDPStartup()
    $iSocket = UDPOpen($ip, $port)
    $sHeader = "ÿÿÿÿ dvarlist" & @CRLF & _
    "." & @CRLF & @CRLF
    UDPSend($iSocket, $sHeader)
    GUICtrlSetData($server_log, "")
    Do
    $srecv = UDPRecv($iSocket, 1000)
    If $srecv <> "" Then
    $data = GUICtrlRead($server_log)
    GUICtrlSetData($server_log, "" & $data & @CRLF & "NEUES PAKET" & @CRLF & $srecv)
    $data = GUICtrlRead($server_log)
    EndIf
    $time = $time + 1
    ToolTip("" & $time)
    Until StringInStr($data, "total dvars") Or $time > 50
    $time = 0
    EndFunc ;==>srecv

    [/autoit]

    Wo ist mein Fehler den ich definitiv mache? Ich komm da nicht drauf!

  • ShellExecute Win7 UAC Problem

    • MrB
    • 8. April 2010 um 15:51

    Und da liegt dann wieder mein Problem, wo ich noch nicht weis, wie ich das lösen soll. Mal sehen. Dank Dir

  • ShellExecute Win7 UAC Problem

    • MrB
    • 8. April 2010 um 00:24

    Mahagon

    Wärst du so nett mir zu sagen, wo dein Profilordner ist. C:\users\Rata\AppData\Local\VirtualStore\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\players\profiles oder C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\players\profiles.

    Aber nachvollziehen kann ich´s auch nicht wirklich, aber Fakt ist, wenn ich COD4 mit
    Vergesst es ! Nachdem ich den Players Ordner einmal nach C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\ kopiert hatte, will er jetzt immer diesen Ordner benutzen und hat C:\users\Rata\AppData\Local\VirtualStore\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\players komplett vergessen. Also sei´s drum. Ich kann´s jetzt nicht mehr testen und zu einer Neuinstallation hab ich keine Lust!! Mal sehen, ob demnächst einer meckert, ansonsten werd ich´s auch vergessen.

    Würde trotzdem gerne wissen, wo dein Ordner ist Mahago

    Gruß und Thx

  • ShellExecute Win7 UAC Problem

    • MrB
    • 7. April 2010 um 23:28

    Moin zusammen,

    Wieder mal Win7 udn UAC was mir Probleme bereitet. Und zwar möchte ich COD4 MW per Button starten. Das Problem dabei ist Win7 und sein UAC, denn bei aktivierter UAC speichert COD4 den Profile Ordner nach C:\Users\Rata\AppData\Local\VirtualStore\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\players. Um COD zu starten damit es funktioniert muss der ShellExecute Befehl ja so aussehen, denke ich :

    [autoit]


    ShellExecute("C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\iw3sp.exe","","C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\")

    [/autoit]


    Startet auch, nur findet er dann das Profil nicht mehr. WorkingDir muss aber zwingend "C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\" sein sonst startet er nicht. Kopier ich manuell den Profil Ordner nach C:\Program Files (x86)\Activision\Call of Duty 4 - Modern Warfare\players läuft es einwandfrei, nur ist das keine Lösung. Ich kann ja nicht wissen wer UAC an hat und wer nicht.

    Also bräuchte ich eine Möglichkeit um herausfinden zu können, ob UAC an ist oder nicht und wie ich das Programm bei aktivierter UAC richtig starten kann. Wenn UAC deaktiviert ist, ist das alles kein Problem.

    Hat einer eine Idee, wie das zu lösen ist ?????

    Gruß und THX

  • Mal wieder ListView Probleme

    • MrB
    • 2. April 2010 um 20:18

    Und nochmal. UP!

  • Mal wieder ListView Probleme

    • MrB
    • 2. April 2010 um 12:10

    BugFix

    LOL, hast Recht. Ist einfach von den vorher gegangenen Versuchen übriggeblieben und verworren wie man ist bleibt die auch drin. Werd ich ändern THX. Aber eben dieser For Next Schleife galt ja auch schon meine Frage hier im Forum, wie man das lösen kann.

    So, hab mal was gebastelt. Ist nicht das komplette Script, aber so funktioniert´s auch schon nicht. Zugangsdaten kann ich natürlich nicht weiter geben.


    Spoiler anzeigen
    [autoit]


    #include <WindowsConstants.au3>
    #include <StaticConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <Constants.au3>
    #include <string.au3>
    #include <ListViewConstants.au3>
    #include <GUIListView.au3>
    #include <file.au3>
    #include <StructureConstants.au3>

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Global $ip = "****"
    Global $port = "*****"
    Global $iSocket
    Global $sHeader
    Global $player1_pb_id
    Global $player2_pb_id
    Global $player3_pb_id
    Global $player4_pb_id
    Global $player5_pb_id
    Global $player6_pb_id
    Global $player7_pb_id
    Global $player8_pb_id
    Global $player9_pb_id
    Global $player10_pb_id
    Global $player11_pb_id
    Global $player12_pb_id
    Global $player13_pb_id
    Global $player14_pb_id
    Global $player15_pb_id
    Global $player16_pb_id
    Global $player17_pb_id
    Global $player18_pb_id
    Global $player19_pb_id
    Global $player20_pb_id
    Global $player21_pb_id
    Global $player22_pb_id
    Global $player23_pb_id
    Global $player24_pb_id
    Global $register = 0

    [/autoit] [autoit][/autoit] [autoit]

    $gui = GUICreate("test", 1000, 1000, 0, 0)
    $beenden = GUICtrlCreateButton("Beenden", 20, 950, 200)

    [/autoit] [autoit][/autoit] [autoit]

    header()
    GUISetState(@SW_SHOW)

    [/autoit] [autoit][/autoit] [autoit]

    GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")

    [/autoit] [autoit][/autoit] [autoit]

    While 1

    [/autoit] [autoit][/autoit] [autoit]

    $msg = GUIGetMsg()

    [/autoit] [autoit][/autoit] [autoit]

    Select
    Case $msg = $GUI_EVENT_CLOSE
    Exit
    Case $msg = $beenden
    Exit

    [/autoit] [autoit][/autoit] [autoit]

    EndSelect
    WEnd

    [/autoit] [autoit][/autoit] [autoit]

    Func pbid()
    Dim $filearray_pb

    [/autoit] [autoit][/autoit] [autoit]

    UDPStartup()
    $iSocket = UDPOpen($ip, $port)

    [/autoit] [autoit][/autoit] [autoit]

    $sHeader = "ÿÿÿÿ rcon ******* PB_SV_PList" & @CRLF & _
    "." & @CRLF & @CRLF
    UDPSend($iSocket, $sHeader)
    Do
    $srecv = UDPRecv($iSocket, 4096)
    Until $srecv <> ""
    ;~ MsgBox(0, "", "" & $srecv)
    Sleep(1000)

    [/autoit] [autoit][/autoit] [autoit]

    $file = FileOpen(@ScriptDir & "\logpb.txt", 2)
    FileWrite($file, $srecv)
    FileClose($file)
    cleanup()
    _FileReadToArray(@ScriptDir & "\logpb.txt", $filearray_pb)
    ;~ _ArrayDisplay($filearray_pb)
    $place2 = 2
    If $place2 < $filearray_pb[0] - 1 Then
    $player1_pb_all = $filearray_pb[3]
    $player1_pb_split = StringReplace($player1_pb_all, "^5PunkBuster Server: ", "")
    $player1_pb_split = StringRegExpReplace($player1_pb_split, '\s+', '/')
    $player1_pb_split = StringSplit($player1_pb_split, "/")
    $player1_pb_id = $player1_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player2_pb_all = $filearray_pb[4]
    $player2_pb_split = StringReplace($player2_pb_all, "^5PunkBuster Server: ", "")
    $player2_pb_split = StringRegExpReplace($player2_pb_split, '\s+', '/')
    $player2_pb_split = StringSplit($player2_pb_split, "/")
    $player2_pb_id = $player2_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player3_pb_all = $filearray_pb[5]
    $player3_pb_split = StringReplace($player3_pb_all, "^5PunkBuster Server: ", "")
    $player3_pb_split = StringRegExpReplace($player3_pb_split, '\s+', '/')
    $player3_pb_split = StringSplit($player3_pb_split, "/")
    $player3_pb_id = $player3_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player4_pb_all = $filearray_pb[6]
    $player4_pb_split = StringReplace($player4_pb_all, "^5PunkBuster Server: ", "")
    $player4_pb_split = StringRegExpReplace($player4_pb_split, '\s+', '/')
    $player4_pb_split = StringSplit($player4_pb_split, "/")
    $player4_pb_id = $player4_pb_split[1]
    $place2 = $place2 + 1
    EndIf
    If $place2 < $filearray_pb[0] - 1 Then
    $player5_pb_all = $filearray_pb[7]
    $player5_pb_split = StringReplace($player5_pb_all, "^5PunkBuster Server: ", "")
    $player5_pb_split = StringRegExpReplace($player5_pb_split, '\s+', '/')
    $player5_pb_split = StringSplit($player5_pb_split, "/")
    $player5_pb_id = $player5_pb_split[1]
    $place2 = $place2 + 1
    EndIf
    If $place2 < $filearray_pb[0] - 1 Then
    $player6_pb_all = $filearray_pb[8]
    $player6_pb_split = StringReplace($player6_pb_all, "^5PunkBuster Server: ", "")
    $player6_pb_split = StringRegExpReplace($player6_pb_split, '\s+', '/')
    $player6_pb_split = StringSplit($player6_pb_split, "/")
    $player6_pb_id = $player5_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player7_pb_all = $filearray_pb[9]
    $player7_pb_split = StringReplace($player7_pb_all, "^5PunkBuster Server: ", "")
    $player7_pb_split = StringRegExpReplace($player7_pb_split, '\s+', '/')
    $player7_pb_split = StringSplit($player7_pb_split, "/")
    $player7_pb_id = $player7_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player8_pb_all = $filearray_pb[10]
    $player8_pb_split = StringReplace($player8_pb_all, "^5PunkBuster Server: ", "")
    $player8_pb_split = StringRegExpReplace($player8_pb_split, '\s+', '/')
    $player8_pb_split = StringSplit($player8_pb_split, "/")
    $player8_pb_id = $player8_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player9_pb_all = $filearray_pb[11]
    $player9_pb_split = StringReplace($player9_pb_all, "^5PunkBuster Server: ", "")
    $player9_pb_split = StringRegExpReplace($player9_pb_split, '\s+', '/')
    $player9_pb_split = StringSplit($player9_pb_split, "/")
    $player9_pb_id = $player9_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player10_pb_all = $filearray_pb[12]
    $player10_pb_split = StringReplace($player10_pb_all, "^5PunkBuster Server: ", "")
    $player10_pb_split = StringRegExpReplace($player10_pb_split, '\s+', '/')
    $player10_pb_split = StringSplit($player10_pb_split, "/")
    $player10_pb_id = $player10_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player11_pb_all = $filearray_pb[13]
    $player11_pb_split = StringReplace($player11_pb_all, "^5PunkBuster Server: ", "")
    $player11_pb_split = StringRegExpReplace($player11_pb_split, '\s+', '/')
    $player11_pb_split = StringSplit($player11_pb_split, "/")
    $player11_pb_id = $player11_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player12_pb_all = $filearray_pb[14]
    $player12_pb_split = StringReplace($player12_pb_all, "^5PunkBuster Server: ", "")
    $player12_pb_split = StringRegExpReplace($player12_pb_split, '\s+', '/')
    $player12_pb_split = StringSplit($player12_pb_split, "/")
    $player12_pb_id = $player12_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player13_pb_all = $filearray_pb[15]
    $player13_pb_split = StringReplace($player13_pb_all, "^5PunkBuster Server: ", "")
    $player13_pb_split = StringRegExpReplace($player13_pb_split, '\s+', '/')
    $player13_pb_split = StringSplit($player13_pb_split, "/")
    $player13_pb_id = $player13_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player14_pb_all = $filearray_pb[16]
    $player14_pb_split = StringReplace($player14_pb_all, "^5PunkBuster Server: ", "")
    $player14_pb_split = StringRegExpReplace($player14_pb_split, '\s+', '/')
    $player14_pb_split = StringSplit($player14_pb_split, "/")
    $player14_pb_id = $player14_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player15_pb_all = $filearray_pb[17]
    $player15_pb_split = StringReplace($player15_pb_all, "^5PunkBuster Server: ", "")
    $player15_pb_split = StringRegExpReplace($player15_pb_split, '\s+', '/')
    $player15_pb_split = StringSplit($player15_pb_split, "/")
    $player15_pb_id = $player15_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player16_pb_all = $filearray_pb[18]
    $player16_pb_split = StringReplace($player16_pb_all, "^5PunkBuster Server: ", "")
    $player16_pb_split = StringRegExpReplace($player16_pb_split, '\s+', '/')
    $player16_pb_split = StringSplit($player16_pb_split, "/")
    $player16_pb_id = $player16_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player17_pb_all = $filearray_pb[19]
    $player17_pb_split = StringReplace($player17_pb_all, "^5PunkBuster Server: ", "")
    $player17_pb_split = StringRegExpReplace($player17_pb_split, '\s+', '/')
    $player17_pb_split = StringSplit($player17_pb_split, "/")
    $player17_pb_id = $player17_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player18_pb_all = $filearray_pb[20]
    $player18_pb_split = StringReplace($player18_pb_all, "^5PunkBuster Server: ", "")
    $player18_pb_split = StringRegExpReplace($player18_pb_split, '\s+', '/')
    $player18_pb_split = StringSplit($player18_pb_split, "/")
    $player18_pb_id = $player18_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player19_pb_all = $filearray_pb[21]
    $player19_pb_split = StringReplace($player19_pb_all, "^5PunkBuster Server: ", "")
    $player19_pb_split = StringRegExpReplace($player19_pb_split, '\s+', '/')
    $player19_pb_split = StringSplit($player19_pb_split, "/")
    $player19_pb_id = $player19_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player20_pb_all = $filearray_pb[22]
    $player20_pb_split = StringReplace($player20_pb_all, "^5PunkBuster Server: ", "")
    $player20_pb_split = StringRegExpReplace($player20_pb_split, '\s+', '/')
    $player20_pb_split = StringSplit($player20_pb_split, "/")
    $player20_pb_id = $player20_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player21_pb_all = $filearray_pb[23]
    $player21_pb_split = StringReplace($player21_pb_all, "^5PunkBuster Server: ", "")
    $player21_pb_split = StringRegExpReplace($player21_pb_split, '\s+', '/')
    $player21_pb_split = StringSplit($player21_pb_split, "/")
    $player21_pb_id = $player21_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player22_pb_all = $filearray_pb[24]
    $player22_pb_split = StringReplace($player22_pb_all, "^5PunkBuster Server: ", "")
    $player22_pb_split = StringRegExpReplace($player22_pb_split, '\s+', '/')
    $player22_pb_split = StringSplit($player22_pb_split, "/")
    $player22_pb_id = $player22_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player23_pb_all = $filearray_pb[25]
    $player23_pb_split = StringReplace($player23_pb_all, "^5PunkBuster Server: ", "")
    $player23_pb_split = StringRegExpReplace($player23_pb_split, '\s+', '/')
    $player23_pb_split = StringSplit($player23_pb_split, "/")
    $player23_pb_id = $player23_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place2 < $filearray_pb[0] - 1 Then
    $player24_pb_all = $filearray_pb[26]
    $player24_pb_split = StringReplace($player24_pb_all, "^5PunkBuster Server: ", "")
    $player24_pb_split = StringRegExpReplace($player24_pb_split, '\s+', '/')
    $player24_pb_split = StringSplit($player24_pb_split, "/")
    $player24_pb_id = $player24_pb_split[1]
    $place2 = $place2 + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    $place2 = 2

    [/autoit] [autoit][/autoit] [autoit]

    EndFunc ;==>pbid

    [/autoit] [autoit][/autoit] [autoit]

    Func header()

    [/autoit] [autoit][/autoit] [autoit]

    Local $hListView_Player

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetState($hListView_Player, @SW_DISABLE)

    [/autoit] [autoit][/autoit] [autoit]

    Dim $filearray
    If FileExists(@ScriptDir & "\log3.txt") Then FileDelete(@ScriptDir & "\log3.txt")
    If FileExists(@ScriptDir & "\logpb.txt") Then FileDelete(@ScriptDir & "\logpb.txt")
    pbid()
    UDPStartup()
    $iSocket = UDPOpen($ip, $port)

    [/autoit] [autoit][/autoit] [autoit]

    $sHeader = "ÿÿÿÿ rcon ******* status" & @CRLF & _
    "." & @CRLF & @CRLF
    UDPSend($iSocket, $sHeader)
    Do
    $srecv = UDPRecv($iSocket, 4096)
    Until $srecv <> ""
    ;~ MsgBox(0, "", "" & $srecv)

    [/autoit] [autoit][/autoit] [autoit]

    $file = FileOpen(@ScriptDir & "\log3.txt", 2)
    FileWrite($file, $srecv)
    FileClose($file)
    cleanup()

    [/autoit] [autoit][/autoit] [autoit]

    _FileReadToArray(@ScriptDir & "\log3.txt", $filearray)
    ;~ _ArrayDisplay($filearray)
    $place = 5

    [/autoit] [autoit][/autoit] [autoit]

    If $place < UBound($filearray, 1) - 1 Then
    $player1_string_all = $filearray[5]
    $player1_string_split = StringRegExpReplace($player1_string_all, '\s+', '/')
    $player1_string_split = StringReplace($player1_string_split, "^7", "")
    $player1_string_split = StringSplit($player1_string_split, "/")
    $place = $place + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place < UBound($filearray, 1) - 1 Then
    $player2_string_all = $filearray[6]
    $player2_string_split = StringRegExpReplace($player2_string_all, '\s+', '/')
    $player2_string_split = StringReplace($player2_string_split, "^7", "")
    $player2_string_split = StringSplit($player2_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player3_string_all = $filearray[7]
    $player3_string_split = StringRegExpReplace($player3_string_all, '\s+', '/')
    $player3_string_split = StringReplace($player3_string_split, "^7", "")
    $player3_string_split = StringSplit($player3_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player4_string_all = $filearray[8]
    $player4_string_split = StringRegExpReplace($player4_string_all, '\s+', '/')
    $player4_string_split = StringReplace($player4_string_split, "^7", "")
    $player4_string_split = StringSplit($player4_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player5_string_all = $filearray[9]
    $player5_string_split = StringRegExpReplace($player5_string_all, '\s+', '/')
    $player5_string_split = StringReplace($player5_string_split, "^7", "")
    $player5_string_split = StringSplit($player5_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player6_string_all = $filearray[10]
    $player6_string_split = StringRegExpReplace($player6_string_all, '\s+', '/')
    $player6_string_split = StringReplace($player6_string_split, "^7", "")
    $player6_string_split = StringSplit($player6_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player7_string_all = $filearray[11]
    $player7_string_split = StringRegExpReplace($player7_string_all, '\s+', '/')
    $player7_string_split = StringReplace($player7_string_split, "^7", "")
    $player7_string_split = StringSplit($player7_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player8_string_all = $filearray[12]
    $player8_string_split = StringRegExpReplace($player8_string_all, '\s+', '/')
    $player8_string_split = StringReplace($player8_string_split, "^7", "")
    $player8_string_split = StringSplit($player8_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player9_string_all = $filearray[13]
    $player9_string_split = StringRegExpReplace($player9_string_all, '\s+', '/')
    $player9_string_split = StringReplace($player9_string_split, "^7", "")
    $player9_string_split = StringSplit($player9_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player10_string_all = $filearray[14]
    $player10_string_split = StringRegExpReplace($player10_string_all, '\s+', '/')
    $player10_string_split = StringReplace($player10_string_split, "^7", "")
    $player10_string_split = StringSplit($player10_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player11_string_all = $filearray[15]
    $player11_string_split = StringRegExpReplace($player11_string_all, '\s+', '/')
    $player11_string_split = StringReplace($player11_string_split, "^7", "")
    $player11_string_split = StringSplit($player11_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player12_string_all = $filearray[16]
    $player12_string_split = StringRegExpReplace($player12_string_all, '\s+', '/')
    $player12_string_split = StringReplace($player12_string_split, "^7", "")
    $player12_string_split = StringSplit($player12_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player13_string_all = $filearray[17]
    $player13_string_split = StringRegExpReplace($player13_string_all, '\s+', '/')
    $player13_string_split = StringReplace($player13_string_split, "^7", "")
    $player13_string_split = StringSplit($player13_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player14_string_all = $filearray[18]
    $player14_string_split = StringRegExpReplace($player14_string_all, '\s+', '/')
    $player14_string_split = StringReplace($player14_string_split, "^7", "")
    $player14_string_split = StringSplit($player14_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player15_string_all = $filearray[19]
    $player15_string_split = StringRegExpReplace($player15_string_all, '\s+', '/')
    $player15_string_split = StringReplace($player15_string_split, "^7", "")
    $player15_string_split = StringSplit($player15_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player16_string_all = $filearray[20]
    $player16_string_split = StringRegExpReplace($player16_string_all, '\s+', '/')
    $player16_string_split = StringReplace($player16_string_split, "^7", "")
    $player16_string_split = StringSplit($player16_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player17_string_all = $filearray[21]
    $player17_string_split = StringRegExpReplace($player17_string_all, '\s+', '/')
    $player17_string_split = StringReplace($player17_string_split, "^7", "")
    $player17_string_split = StringSplit($player17_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player18_string_all = $filearray[22]
    $player18_string_split = StringRegExpReplace($player18_string_all, '\s+', '/')
    $player18_string_split = StringReplace($player18_string_split, "^7", "")
    $player18_string_split = StringSplit($player18_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player19_string_all = $filearray[23]
    $player19_string_split = StringRegExpReplace($player19_string_all, '\s+', '/')
    $player19_string_split = StringReplace($player19_string_split, "^7", "")
    $player19_string_split = StringSplit($player19_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player20_string_all = $filearray[24]
    $player20_string_split = StringRegExpReplace($player20_string_all, '\s+', '/')
    $player20_string_split = StringReplace($player20_string_split, "^7", "")
    $player20_string_split = StringSplit($player20_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player21_string_all = $filearray[25]
    $player21_string_split = StringRegExpReplace($player21_string_all, '\s+', '/')
    $player21_string_split = StringReplace($player21_string_split, "^7", "")
    $player21_string_split = StringSplit($player21_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player22_string_all = $filearray[26]
    $player22_string_split = StringRegExpReplace($player22_string_all, '\s+', '/')
    $player22_string_split = StringReplace($player22_string_split, "^7", "")
    $player22_string_split = StringSplit($player22_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player23_string_all = $filearray[27]
    $player23_string_split = StringRegExpReplace($player23_string_all, '\s+', '/')
    $player23_string_split = StringReplace($player23_string_split, "^7", "")
    $player23_string_split = StringSplit($player23_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player24_string_all = $filearray[28]
    $player24_string_split = StringRegExpReplace($player24_string_all, '\s+', '/')
    $player24_string_split = StringReplace($player24_string_split, "^7", "")
    $player24_string_split = StringSplit($player24_string_split, "/")
    $place = $place + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    $hListView_Player = GUICtrlCreateListView("PB ID|ID|Score|Ping|GUID|Name (" & $place - 5 & " Spieler)|LastMsg|IP|QPort|Rate", 10, 20, 690, 500, -1, BitOR($LVS_EX_TRACKSELECT, $LVS_EX_FULLROWSELECT))
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 40)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 40)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 2, 50)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 3, 40)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 4, 100)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 5, 130)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 6, 60)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 7, 120)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 8, 50)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 9, 50)

    [/autoit] [autoit][/autoit] [autoit]

    $view1 = GUICtrlCreateListViewItem("|||||||||", $hListView_Player)
    $view2 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view3 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view4 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view5 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view6 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view7 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view8 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view9 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view10 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view11 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view12 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view13 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view14 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view15 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view16 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view17 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view18 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view19 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view20 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view21 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view22 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view23 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)
    $view24 = GUICtrlCreateListViewItem("||||||||||", $hListView_Player)

    [/autoit] [autoit][/autoit] [autoit]

    If $place = 5 Then
    $view_platzhalter = GUICtrlSetData($view1, "/|/|/|/|/|/|/|/|/|")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 5 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player1_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view1, $player1_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view1, "|" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||||||||" & $player1_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view1, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view1, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 6 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player2_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view2, $player2_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view2, "|" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||||||||" & $player2_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view2, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view2, "||||||||")
    EndIf
    If $place > 7 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player3_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view3, $player3_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view3, "|" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||||||||" & $player3_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view3, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view3, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 8 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player4_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view4, $player4_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view4, "|" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||||||||" & $player4_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view4, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view4, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 9 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player5_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view5, $player5_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view5, "|" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||||||||" & $player5_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view6, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view5, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 10 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player6_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view6, $player6_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view6, "|" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||||||||" & $player6_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view6, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view6, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 11 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player7_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view7, $player7_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view7, "|" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||||||||" & $player7_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view7, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view7, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 12 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player8_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view8, $player8_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view8, "|" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||||||||" & $player8_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view8, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view8, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 13 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player9_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view9, $player9_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view9, "|" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||||||||" & $player9_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view9, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view9, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 14 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player10_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view10, $player10_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view10, "|" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||||||||" & $player10_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view10, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view10, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 15 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player11_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view11, $player11_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view11, "|" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||||||||" & $player11_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view11, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view11, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 16 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player12_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view12, $player12_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view12, "|" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||||||||" & $player12_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view12, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view12, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 17 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player13_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view13, $player13_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view13, "|" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||||||||" & $player13_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view13, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view13, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 18 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player14_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view14, $player14_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view14, "|" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||||||||" & $player14_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view14, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view14, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 19 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player15_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view15, $player15_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view15, "|" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||||||||" & $player15_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view15, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view15, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 20 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player16_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view16, $player16_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view16, "|" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||||||||" & $player16_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view16, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view16, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 21 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player17_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view17, $player17_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view17, "|" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||||||||" & $player17_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view17, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view17, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 22 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player18_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view18, $player18_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view18, "|" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||||||||" & $player18_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view18, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view18, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 23 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player19_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view19, $player19_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view19, "|" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||||||||" & $player19_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view19, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view19, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 24 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player20_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view20, $player20_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view20, "|" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||||||||" & $player20_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view20, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view20, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 25 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player21_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view21, $player21_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view21, "|" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||||||||" & $player21_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view21, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view21, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 26 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player22_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view22, $player22_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view22, "|" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||||||||" & $player22_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view22, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view22, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 27 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player23_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view23, $player23_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view23, "|" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||||||||" & $player23_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view23, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view23, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 28 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player24_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    $i = 2
    GUICtrlSetData($view24, $player24_pb_id)

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetData($view24, "|" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||||||||" & $player24_string_split[$i])

    [/autoit] [autoit][/autoit] [autoit]

    Else
    GUICtrlSetData($view24, "/|/|/|/|/|/|/|/|")
    EndIf
    Else
    GUICtrlSetData($view24, "||||||||")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $register = 0 Then
    AdlibRegister("header", 10000)
    $register = 1
    EndIf
    $place = 5

    [/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetState($hListView_Player, @SW_ENABLE)

    [/autoit] [autoit][/autoit] [autoit]

    EndFunc ;==>header

    [/autoit] [autoit][/autoit] [autoit]

    Func rcon_start()
    UDPStartup()
    $iSocket = UDPOpen($ip, $port)
    EndFunc ;==>rcon_start

    [/autoit] [autoit][/autoit] [autoit]

    Func rcon_send()
    UDPSend($iSocket, $sHeader)
    Do
    $srecv = UDPRecv($iSocket, 4096)
    Until $srecv <> ""
    Return $srecv
    ;~ MsgBox(0, "", "" & $srecv)
    cleanup()

    [/autoit] [autoit][/autoit] [autoit]

    EndFunc ;==>rcon_send

    [/autoit] [autoit][/autoit] [autoit]

    Func cleanup()
    UDPCloseSocket($iSocket)
    UDPShutdown()
    EndFunc ;==>cleanup

    [/autoit] [autoit][/autoit] [autoit]

    Func _LeftDblClick($Info)
    MsgBox(0,"","" & _GUICtrlListView_GetItemText($Info[0], $Info[1], $Info[2]))
    EndFunc ;==>_LeftDblClick

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Func WM_NOTIFY($hWnd, $iMsg, $iwParam, $ilParam)
    Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $hWndListView, $hListView_Player
    $hWndListView = $hListView_Player
    If Not IsHWnd($hListView_Player) Then $hWndListView = GUICtrlGetHandle($hListView_Player)
    $tNMHDR = DllStructCreate($tagNMHDR, $ilParam)
    $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom"))
    $iIDFrom = DllStructGetData($tNMHDR, "IDFrom")
    $iCode = DllStructGetData($tNMHDR, "Code")
    If $hWndFrom = $hWndListView And $iCode = $NM_DBLCLK Then
    Local $tInfo = DllStructCreate($tagNMITEMACTIVATE, $ilParam)
    Local $aInfo[3] = [$hWndFrom, DllStructGetData($tInfo, "Index"), DllStructGetData($tInfo, "SubItem")]
    _LeftDblClick($aInfo)
    EndIf
    Return $GUI_RUNDEFMSG
    EndFunc ;==>WM_NOTIFY

    [/autoit]
  • Mal wieder ListView Probleme

    • MrB
    • 1. April 2010 um 23:44

    UP! Hab noch keine Lösung

  • String Fragen

    • MrB
    • 1. April 2010 um 12:20

    Hab´s dann doch noch nicht ganz kapiert :(

    Wie bekomm ich es hin, dass immer die cacheid aus dem folgenden Quelltext ausgeschnitten wird?

    Spoiler anzeigen


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Suchergebnis anzeigen - Geocaching mit Opencaching</title>
    <meta http-equiv="content-type" content="text/xhtml; charset=UTF-8" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <meta http-equiv="Content-Language" content="de" />
    <meta http-equiv="gallerimg" content="no" />
    <meta http-equiv="pragma" content="no-cache" />

    <meta http-equiv="cache-control" content="no-cache" />
    <link rel="SHORTCUT ICON" href="favicon.ico">
    <link rel="stylesheet" type="text/css" href="lang/de/stdstyle/css/main.css" />
    </head>
    <body>
    <table border="0" cellspacing="0" cellpadding="2" width="100%" style="/*background-image:url(images/banner.jpg);*/background-position:100% 100%">
    <tr>
    <td width="80px">
    <a href="index.php?page=start"><img src="images/logo_new_small.gif" alt="Opencaching-Logo" width="80px" style="border:0px;margin-left:4px;" /></a>

    </td>
    <td width="23px" valign="bottom" style="padding-bottom:2px;">
    <div style="padding-top:2px"><a href="index.php?locale=DE"><img src="images/flag/DE.gif" border="0" alt="Deutsch" title="Deutsch" width="23px" height="15px" /></a></div>
    <div style="padding-top:2px"><a href="index.php?locale=EN"><img src="images/flag/EN.gif" border="0" alt="English" title="English" width="23px" height="15px" /></a></div>
    </td>
    <td width="100%">
    </td>
    <td valign="bottom">
    <table>

    <tr>
    <td id="loginbox" nowrap="nowrap">
    <form action="login.php" method="post" enctype="application/x-www-form-urlencoded" name="login" dir="ltr" style="display: inline;">Benutzer:&nbsp;<input name="email" size="10" type="text" class="textboxes" value="" />&nbsp;PW:&nbsp;<input name="password" size="10" type="password" class="textboxes" value="" />&nbsp;<input type="hidden" name="action" value="login" /><input type="hidden" name="target" value="search.php" /><input type="submit" name="LogMeIn" value="Anmelden" class="loginsubmit" /></form> </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    <div id="naviBox" style="background-color:#FFFFC5">
    <table width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <div style="padding:7px 7px 7px 7px;">
    <a href="index.php">Startseite</a>
    &nbsp;|&nbsp;<a href="myhome.php">Mein Profil</a>
    &nbsp;|&nbsp;<b><a href="search.php">Caches</a></b>

    &nbsp;|&nbsp;<a href="http://cms.opencaching.de">Informationen</a>
    </div>
    </td>
    <td width="250px" style="vertical-align:top;text-align:right;"><div id="dwj">Unterst&uuml;tzt und gef&ouml;rdert durch<br />die Deutsche Wanderjugend</div></td>
    <td width="60px"><a href="http://www.wanderjugend.de" target="_blank"><img border="0" src="images/dwj.gif" width="50px" height="25px" alt="... die outdoororientierte Jugendorganisation des Deutschen Wanderverbandes" /></a></td>
    </tr>

    </table>
    </div>
    <table cellpadding="0" cellspacing="0" border="0" width="100%">
    <tr>
    <td valign="top">
    <br/>
    <table cellpadding="0" cellspacing="0" width="165px">
    <tr><td><table cellpadding="0" cellspacing="0" width="100%" style="background-color:#FFFFC5"><tr><td class="navi2top">&nbsp;</td></tr><tr><td class="navilevel2n"><b><a href="search.php">Suchen</a></b></td></tr>
    <tr><td class="navilevel2n"><a href="newcache.php">Verstecken</a></td></tr>

    <tr><td class="navilevel3"><a href="articles.php?page=cacheinfo">Beschreibung</a></td></tr>
    <tr><td class="navilevel3"><a href="htmlprev.php">HTML Vorschau</a></td></tr>
    <tr><td class="navilevel3"><a href="articles.php?page=htmltags">Erlaubte HTML Tags</a></td></tr>
    <tr><td class="navilevel2n"><a href="tops.php">Besondere Caches</a></td></tr>
    <tr><td class="navi2bottom">&nbsp;</td></tr></td></tr></table> <tr><td>&nbsp;</td></tr>
    <tr>
    <td id="infoBoxGreen">
    Wegpunkt-Suche:<br /><br />

    <form action="searchplugin.php" method="post" style="display:inline;">
    <input type="hidden" name="source" value="waypoint-suche" /></input>
    <input type="text" name="userinput" size="10" style="height:16px;" /></input>
    <input type="submit" value="Go" /></input>
    </form>
    </td>
    </tr>
    <tr>
    <td>

    <div style="margin-top:20px;width:100%;text-align:center;">
    <a href="http://www.opencaching.de/articles.php?page=donations">
    <img src="https://www.paypal.com/de_DE/DE/i/btn/btn_donateCC_LG.gif" alt="Spenden" style="border:0px;" />
    </a>
    </div>
    </td>
    </tr>
    </table>
    </td>

    <td id="pagecontent">
    <div id="breadcrumb">
    Caches&nbsp;&gt;&nbsp;Suchen&nbsp;&gt;&nbsp;Ergebnis </div>
    <div id="content">
    <table class="content" border="0" cellspacing="0px" cellpadding="0px">
    <tr>
    <td class="header"><img src="lang/de/stdstyle/images/cache/traditional.gif" border="0" width="32" height="32" alt="Suchergebnis" title="Suchergebnis" align="middle"> <b>Suchergebnis</b> 2505 Caches gefunden.</td>

    <td class="header" align="right" style="padding-right:1ex;">[<a href="search.php?queryid=30383787&showresult=0">Bearbeiten</a>]&nbsp;</td>
    </tr>
    <tr><td class="spacer" colspan="2"></td></tr>
    <tr>
    <td class="header-small" colspan="2">Seite: &lt;&lt; &lt; <b>1</b> <a href="search.php?queryid=30383787&startat=20">2</a> <a href="search.php?queryid=30383787&startat=40">3</a> <a href="search.php?queryid=30383787&startat=60">4</a> <a href="search.php?queryid=30383787&startat=80">5</a> <a href="search.php?queryid=30383787&startat=100">6</a> <a href="search.php?queryid=30383787&startat=120">7</a> <a href="search.php?queryid=30383787&startat=140">8</a> <a href="search.php?queryid=30383787&startat=160">9</a> <a href="search.php?queryid=30383787&startat=20">&gt;</a> <a href="search.php?queryid=30383787&startat=2500">&gt;&gt;</a> </td>

    </tr>
    <tr>
    <td colspan="2" style="padding-left: 0px; padding-right: 0px;">
    <table border="0" cellspacing="0px" cellpadding="0px" class="null">
    <tr>
    <td width="18" height="13" bgcolor="#E6E6E6">#</td>
    <td width="45" height="13" bgcolor="#E6E6E6"><b>km</b></td>
    <td width="32" height="13" bgcolor="#E6E6E6"><b>Typ</b></td>

    <td width="46" height="13" bgcolor="#E6E6E6"><b>D/T</b></td>
    <td width="448" height="13" bgcolor="#E6E6E6"><b>Name</b></td>
    <td width="126" height="13" bgcolor="#E6E6E6"><b>Letzte Logs</b></td>
    </tr>
    <!--a--><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">1&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">2.7&nbsp;</td>

    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>
    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=140442">Pfusch am Bau ...?</a> von <a href="viewprofile.php?userid=159696">jufoe-ldk</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=140442#532452'>25.09.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>

    <td width="32" valign="top" bgcolor="#eeeeee">N&nbsp;</td>
    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=140442&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee">&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">2&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">3.0&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>

    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>
    <td width="448" bgcolor="#e0e0e0"><b>NEU</b>&nbsp;<a href="viewcache.php?cacheid=144790">&quot;am Bach&quot;</a> von <a href="viewprofile.php?userid=159696">jufoe-ldk</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='images/trans.gif' border='0' width='16' height='16' /> --.--.----&nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>

    <td width="32" valign="top" bgcolor="#e0e0e0">NW&nbsp;</td>
    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=144790&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Einfacher, leichter Cache. Von Anfängern für Anfänger. &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0">&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">3&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">4.6&nbsp;</td>

    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>
    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=109070">Im Grund</a> von <a href="viewprofile.php?userid=103803">drei_und_zwei</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=109070#531391'>23.09.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>

    <td width="32" valign="top" bgcolor="#eeeeee">NNO&nbsp;</td>
    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=109070&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=109070#484766'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=109070#379817'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=109070#344960'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=109070#442992'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=109070#320837'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">4&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">6.2&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>

    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-30.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 3.0 von 5.0' title='Schwierigkeit: 3.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-50.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 5.0 von 5.0' title='Gel&auml;nde: 5.0 von 5.0'></td>
    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=117347">Stonebreaker</a> von <a href="viewprofile.php?userid=103165">minorearth</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=117347#558595'>28.11.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">NNO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=117347&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Gefährliches Terrain. Cache sollte nicht im Dunkeln (Nacht) und nicht alleine gehoben werden. Kletterausrüstung erforder &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=117347#421357'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=117347#298325'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=117347#570204'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=117347#198879'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">5&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">6.3&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=108861">Schlucht</a> von <a href="viewprofile.php?userid=103803">drei_und_zwei</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=108861#533976'>27.09.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">NNO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><nobr><img src="images/rating-star.gif" alt="1 Empfehlungen" title="1 Empfehlungen" width="17px" height="16px" /></nobr>&nbsp;<a href="viewcache.php?cacheid=108861&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=108861#502140'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=108861#479570'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=108861#417797'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=108861#379810'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=108861#333116'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">6&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">6.8&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-10.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.0 von 5.0' title='Gel&auml;nde: 1.0 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=124276">Lecker Sauerborn</a> von <a href="viewprofile.php?userid=124440">bigbenreso</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=124276#586899'>21.03.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">SSO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=124276&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=124276#465257'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=124276#442727'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=124276#437330'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=124276#442322'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=124276#413322'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">7&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">6.8&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/mystery-s.gif' alt='Rätselcache' title='Rätselcache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=131337">DPSG Altenberg (v2)</a> von <a href="viewprofile.php?userid=110943">Owyn</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=131337#545847'>25.10.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">SW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=131337&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Multi auf dem DPSG-Bundeszentrum. &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=131337#493559'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=131337#474818'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=131337#415488'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=131337#413731'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=131337#526280'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">8&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">7.4&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/mystery-s.gif' alt='Rätselcache' title='Rätselcache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=105690">Kein Pik-König!</a> von <a href="viewprofile.php?userid=101085">tobsas</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-note.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=105690#591387'>03.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">NO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=105690&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Cache rund um ein Kartenspiel - sehr einfach &amp; sehr kurz (5 Min von A45-Ausfahrt Herborn-West) &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=105690#548048'><img src='./lang/de/stdstyle/images/log/16x16-note.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105690#440423'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105690#429478'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105690#495122'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105690#361200'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">9&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">7.7&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>

    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-30.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 3.0 von 5.0' title='Schwierigkeit: 3.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-30.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 3.0 von 5.0' title='Gel&auml;nde: 3.0 von 5.0'></td>
    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=127031">Burg-Cache 2 Türme</a> von <a href="viewprofile.php?userid=120953">titan099</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-dnf.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=127031#590976'>02.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">OSO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=127031&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Burg-Cache Greifenstein &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=127031#526917'><img src='./lang/de/stdstyle/images/log/16x16-dnf.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=127031#437844'><img src='./lang/de/stdstyle/images/log/16x16-dnf.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=127031#430318'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=127031#395803'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=127031#357642'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">10&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">7.8&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=104654">Merowech´s Ringwall 4</a> von <a href="viewprofile.php?userid=101787">merowech</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=104654#470638'>24.05.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">SSW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=104654&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=104654#361080'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=104654#253074'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=104654#279562'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=104654#245317'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=104654#272021'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">11&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">8.1&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=106434">Waeller Zick Zack 2</a> von <a href="viewprofile.php?userid=101787">merowech</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=106434#595827'>11.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">WSW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=106434&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=106434#595057'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106434#385179'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106434#322516'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106434#295804'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106434#287157'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">12&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">8.1&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-10.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.0 von 5.0' title='Schwierigkeit: 1.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=105387">Burg Merostein</a> von <a href="viewprofile.php?userid=101787">merowech</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=105387#532558'>26.09.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">SSW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><nobr><img src="images/rating-star.gif" alt="1 Empfehlungen" title="1 Empfehlungen" width="17px" height="16px" /></nobr>&nbsp;<a href="viewcache.php?cacheid=105387&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Mein erster versteckter Cache &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=105387#470624'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105387#362524'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105387#304371'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105387#294843'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=105387#273701'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">13&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">8.2&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/drivein-s.gif' alt='Drive-In' title='Drive-In'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-10.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.0 von 5.0' title='Schwierigkeit: 1.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-10.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.0 von 5.0' title='Gel&auml;nde: 1.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=119140">rainy day no. 3</a> von <a href="viewprofile.php?userid=111427">vmax</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=119140#598848'>14.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">NO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=119140&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=119140#588459'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=119140#581188'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=119140#574866'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=119140#558602'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=119140#569858'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">14&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">8.3&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-10.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.0 von 5.0' title='Gel&auml;nde: 1.0 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=115325">A 45 TB Motel</a> von <a href="viewprofile.php?userid=109155">Janosch the Oger</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=115325#546239'>25.10.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">NO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=115325&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Schneller Pausencache! &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=115325#533977'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115325#589949'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115325#515783'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115325#508257'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115325#598478'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">15&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">9.1&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-20.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 2.0 von 5.0' title='Schwierigkeit: 2.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=126100">Borderrock</a> von <a href="viewprofile.php?userid=129060">Dickewillis</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=126100#595058'>01.07.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">WSW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=126100&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Rock around the Borderrock! &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=126100#516535'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=126100#462691'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=126100#337563'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">16&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">9.4&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/traditional-s.gif' alt='normaler Cache' title='normaler Cache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-15.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.5 von 5.0' title='Gel&auml;nde: 1.5 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=106453">Kiefer Cache</a> von <a href="viewprofile.php?userid=102660">fcvc</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=106453#480801'>14.06.2009</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">SO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=106453&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Kiefer Cache &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=106453#429331'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106453#412736'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106453#367741'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106453#350074'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106453#197057'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">17&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">9.8&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-10.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.0 von 5.0' title='Schwierigkeit: 1.0 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-10.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 1.0 von 5.0' title='Gel&auml;nde: 1.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=115408">Fernblick</a> von <a href="viewprofile.php?userid=111427">vmax</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=115408#595105'>10.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">WNW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=115408&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> von den Höhen des Westerwaldes schweift der Blick zum Siebengebirge &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=115408#354336'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115408#350771'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115408#350046'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115408#340680'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=115408#353626'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">18&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">10.5&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-35.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 3.5 von 5.0' title='Schwierigkeit: 3.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=140099">Wo alles begann - TWWD wedding cache</a> von <a href="viewprofile.php?userid=150312">finndus_98</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-note.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=140099#596335'>14.03.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">NNW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=140099&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> Multicache mit schöner Aussicht oberhalb des Burbacher Ortsteils Niederdresselndorf &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0">&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#eeeeee">19&nbsp;</td>
    <td width="45" bgcolor="#eeeeee">11.3&nbsp;</td>
    <td width="32" bgcolor="#eeeeee" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>
    <td width="46" rowspan="2" bgcolor="#eeeeee" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>

    <td width="448" bgcolor="#eeeeee"><a href="viewcache.php?cacheid=103157">Kornberg</a> von <a href="viewprofile.php?userid=101085">tobsas</a></td>
    <td width="126" valign="top" bgcolor="#eeeeee"><img src='./lang/de/stdstyle/images/log/16x16-dnf.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=103157#599410'>20.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#eeeeee">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#eeeeee">NNO&nbsp;</td>

    <td width="448" valign="top" bgcolor="#eeeeee"><nobr><img src="images/rating-star.gif" alt="1 Empfehlungen" title="1 Empfehlungen" width="17px" height="16px" /></nobr>&nbsp;<a href="viewcache.php?cacheid=103157&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> <a href="viewcache.php?cacheid=103157&desclang=EN" style="text-decoration:none;"><b><font color="blue">EN</font></b></a> Multi-Cache mit Gesamtlänge von 3,5km bei Dillenburg am Fernwanderweg Rothaarsteig &nbsp;</td>
    <td width="126" valign="top" bgcolor="#eeeeee"><a href='viewlogs.php?cacheid=103157#477492'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=103157#473441'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=103157#468298'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=103157#434014'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=103157#412769'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--m--><tr>
    <td width="18" bgcolor="#e0e0e0">20&nbsp;</td>
    <td width="45" bgcolor="#e0e0e0">11.4&nbsp;</td>
    <td width="32" bgcolor="#e0e0e0" rowspan="2"><img src='lang/de/stdstyle/images/cache/multi-s.gif' alt='Multicache' title='Multicache'></td>

    <td width="46" rowspan="2" bgcolor="#e0e0e0" nowrap><img src='./lang/de/stdstyle/images/difficulty/diff-15.gif' border='0' width='19' height='16' hspace='2' alt='Schwierigkeit: 1.5 von 5.0' title='Schwierigkeit: 1.5 von 5.0'><img src='./lang/de/stdstyle/images/difficulty/terr-20.gif' border='0' width='19' height='16' hspace='2' alt='Gel&auml;nde: 2.0 von 5.0' title='Gel&auml;nde: 2.0 von 5.0'></td>
    <td width="448" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=106438">Waeller Zick Zack 6</a> von <a href="viewprofile.php?userid=101787">merowech</a></td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''><a href='viewlogs.php?cacheid=106438#592901'>05.04.2010</a> &nbsp;</td>
    </tr><!--n-->
    <tr>
    <td width="25" bgcolor="#e0e0e0">&nbsp;</td>
    <td width="32" valign="top" bgcolor="#e0e0e0">WSW&nbsp;</td>

    <td width="448" valign="top" bgcolor="#e0e0e0"><a href="viewcache.php?cacheid=106438&desclang=DE" style="text-decoration:none;"><b><font color="blue">DE</font></b></a> &nbsp;</td>
    <td width="126" valign="top" bgcolor="#e0e0e0"><a href='viewlogs.php?cacheid=106438#582516'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106438#475263'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106438#449310'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106438#442500'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;<a href='viewlogs.php?cacheid=106438#296323'><img src='./lang/de/stdstyle/images/log/16x16-found.png' width='16' height='16' align='middle' border='0' align='left' alt='' title=''></a>&nbsp;&nbsp;</td>
    </tr><!--z-->
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="2" class="header-small">Seite: &lt;&lt; &lt; <b>1</b> <a href="search.php?queryid=30383787&startat=20">2</a> <a href="search.php?queryid=30383787&startat=40">3</a> <a href="search.php?queryid=30383787&startat=60">4</a> <a href="search.php?queryid=30383787&startat=80">5</a> <a href="search.php?queryid=30383787&startat=100">6</a> <a href="search.php?queryid=30383787&startat=120">7</a> <a href="search.php?queryid=30383787&startat=140">8</a> <a href="search.php?queryid=30383787&startat=160">9</a> <a href="search.php?queryid=30383787&startat=20">&gt;</a> <a href="search.php?queryid=30383787&startat=2500">&gt;&gt;</a> </td>

    </tr>
    </table>
    <table class="content">
    <tr>
    <td><b>Downloads</b></td>
    <td align="right" style="padding-right:20px;">
    Einträge auf dieser Seite:
    <a href="search.php?queryid=30383787&output=gpx&startat=0" title=".gpx">GPX</a>
    <a href="search.php?queryid=30383787&output=loc&startat=0" title="Wegpunktdatei .loc">LOC</a>

    <a href="search.php?queryid=30383787&output=kml&startat=0" title="Google Earth .kml">KML</a>
    <a href="http://maps.google.de/maps?f=q&hl=de&q=http%3A%2F%2Fwww.opencaching.de%2Fsearch.php%3Fsearchto%3Dsearchbyplz%26showresult%3D1%26expert%3D0%26output%3DHTML%26utf8%3D1%26sort%3Dbydistance%26orderRatingFirst%3D0%26f_userowner%3D0%26f_userfound%3D0%26f_inactive%3D1%26f_ignored%3D1%26country%3D%26cachetype%3D%26cache_attribs%3D%26cache_attribs_not%3D7%26plz%3D35759%26output%3Dkml" title="in Google Maps anzeigen">(in GM)</a>
    <a href="search.php?queryid=30383787&output=ov2&startat=0" title="TomTom POI .ov2">OV2</a>
    <a href="search.php?queryid=30383787&output=ovl&startat=0" title="TOP50-Overlay .ovl">OVL</a>
    <a href="search.php?queryid=30383787&output=txt&startat=0" title="Textdatei .txt">TXT*</a>
    </td>

    </tr>
    <tr>
    <td class="help">
    Für lokale Anwendungen herunterladen
    </td>
    <td align="right" style="padding-right:20px;">
    Einträge 1 bis 500 (als zip):
    <a href="search.php?queryid=30383787&output=gpx&startat=0&count=max&zip=1" title="GPS Exchange Format .gpx">GPX</a>
    <a href="search.php?queryid=30383787&output=loc&startat=0&count=max&zip=1" title="Wegpunktdatei .loc">LOC</a>

    <a href="search.php?queryid=30383787&output=kml&startat=0&count=max&zip=1" title="Google Earth .kml">KML</a>
    <a href="http://maps.google.de/maps?f=q&hl=de&q=http%3A%2F%2Fwww.opencaching.de%2Fsearch.php%3Fsearchto%3Dsearchbyplz%26showresult%3D1%26expert%3D0%26output%3DHTML%26utf8%3D1%26sort%3Dbydistance%26orderRatingFirst%3D0%26f_userowner%3D0%26f_userfound%3D0%26f_inactive%3D1%26f_ignored%3D1%26country%3D%26cachetype%3D%26cache_attribs%3D%26cache_attribs_not%3D7%26plz%3D35759%26output%3Dkml%26zip%3D1%26count%3Dmax" title="in Google Maps anzeigen">(in GM)</a>
    <a href="search.php?queryid=30383787&output=ov2&startat=0&count=max&zip=1" title="TomTom POI .ov2">OV2</a>
    <a href="search.php?queryid=30383787&output=ovl&startat=0&count=max&zip=1" title="TOP50-Overlay .ovl">OVL</a>
    <a href="search.php?queryid=30383787&output=txt&startat=0&count=max&zip=1" title="Textdatei .txt">TXT</a>
    </td>

    </tr>
    <tr>
    <td class="help" colspan="2" align="right">
    Mit dem Download werden die <a href="articles.php?page=impressum#tos">Nutzungsbedingungen</a> von Opencaching.de akzeptiert.&nbsp;&nbsp;
    </td>
    </tr>
    </table>

    </div>
    </td>
    </tr>
    </table>
    <div id="footBox">
    <table border="0" width="100%">
    <tr>
    <td align="left" valign="top" width="200px">
    Seitenberechnung: 0.965 sek<br />

    Seitenerstellung: 0.380 sek
    </td>
    <td align="center">
    <a href="articles.php?page=dsb">Datenschutzbelehrung</a> |
    <a href="articles.php?page=impressum">Impressum</a><br />
    <a href="articles.php?page=contact">Kontakt</a> |
    <a href="/index.php?page=sitemap">Sitemap</a><br/>

    </td>
    <td align="right" valign="top" width="200px">Hosting by <a target="_blank" href="http://www.schwarzwald.de">https://autoit.de/www.schwarzwald.de</a></td>
    </tr>
    </table>
    </div>
    </body>
    </html>

    _StringBetween funktioniert nicht zuverlässig. Warum weis ich auch nicht wirklich.

    Wie würdet Ihr das lösen ?

  • Mal wieder ListView Probleme

    • MrB
    • 1. April 2010 um 12:16

    Schnitzel

    Jep, hast recht. Da ist wieder mein Problem! Hab´s jetzt erstmal so gelöst:

    [autoit]


    If $place > 5 Then

    [/autoit][autoit][/autoit][autoit]

    If IsArray($player1_string_split) Then

    [/autoit][autoit][/autoit][autoit]

    For $i = 2 To UBound($player1_string_split, 1) - 1 Step 9
    ;~ MsgBox(0, "", "" & $i)
    $view = GUICtrlCreateListViewItem($player1_string_split[$i] & "||||||||", $aButton[38])
    $i = $i + 1
    GUICtrlSetData($view, "|" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "|||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "|||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "|||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view, "||||||||" & $player1_string_split[$i])
    Next
    Else
    $view = GUICtrlCreateListViewItem("/|/|/|/|/|/|/|/|", $aButton[38])
    EndIf
    EndIf

    [/autoit]

    Nicht schön und viel Text, aber funktioniert

    Nur hab ich jetzt das Problem, das die Funktion von BugFix nicht mehr greift. Wenn ich nach einen Update der TreeViewItems (alle 10 Sek) drauf klicke, passiert nichts. Außerdem, sobald ich mit der Maus auf eine Zeile (außer Zeile 1) gehe verschwindet diese. Mal die komplette Funktion die ich für´s Listviev benutze. Ich weis zu viel Text nur weis ich nicht wie es anders geht :-(:

    Spoiler anzeigen
    [autoit]


    Func list()

    [/autoit] [autoit][/autoit] [autoit]

    Dim $filearray

    [/autoit] [autoit][/autoit] [autoit]

    If FileExists(@ScriptDir & "\log3.txt") Then FileDelete(@ScriptDir & "\log3.txt")

    [/autoit] [autoit][/autoit] [autoit]

    UDPStartup()
    $iSocket = UDPOpen($ip, $port)

    [/autoit] [autoit][/autoit] [autoit]

    $sHeader = "ÿÿÿÿ rcon **** status" & @CRLF & _
    "." & @CRLF & @CRLF
    UDPSend($iSocket, $sHeader)
    Do
    $srecv = UDPRecv($iSocket, 4096)
    Until $srecv <> ""

    [/autoit] [autoit][/autoit] [autoit]

    $file = FileOpen(@ScriptDir & "\log3.txt", 2)
    FileWrite($file, $srecv)
    FileClose($file)
    cleanup()

    [/autoit] [autoit][/autoit] [autoit]

    _FileReadToArray(@ScriptDir & "\log3.txt", $filearray)

    [/autoit] [autoit][/autoit] [autoit]

    $place = 5

    [/autoit] [autoit][/autoit] [autoit]

    If $place < UBound($filearray, 1) - 1 Then
    $player1_string_all = $filearray[5]
    $player1_string_split = StringRegExpReplace($player1_string_all, '\s+', '/')
    $player1_string_split = StringReplace($player1_string_split, "^7", "")
    $player1_string_split = StringSplit($player1_string_split, "/")
    $place = $place + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place < UBound($filearray, 1) - 1 Then
    $player2_string_all = $filearray[6]
    $player2_string_split = StringRegExpReplace($player2_string_all, '\s+', '/')
    $player2_string_split = StringReplace($player2_string_split, "^7", "")
    $player2_string_split = StringSplit($player2_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player3_string_all = $filearray[7]
    $player3_string_split = StringRegExpReplace($player3_string_all, '\s+', '/')
    $player3_string_split = StringReplace($player3_string_split, "^7", "")
    $player3_string_split = StringSplit($player3_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player4_string_all = $filearray[8]
    $player4_string_split = StringRegExpReplace($player4_string_all, '\s+', '/')
    $player4_string_split = StringReplace($player4_string_split, "^7", "")
    $player4_string_split = StringSplit($player4_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player5_string_all = $filearray[9]
    $player5_string_split = StringRegExpReplace($player5_string_all, '\s+', '/')
    $player5_string_split = StringReplace($player5_string_split, "^7", "")
    $player5_string_split = StringSplit($player5_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player6_string_all = $filearray[10]
    $player6_string_split = StringRegExpReplace($player6_string_all, '\s+', '/')
    $player6_string_split = StringReplace($player6_string_split, "^7", "")
    $player6_string_split = StringSplit($player6_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player7_string_all = $filearray[5]
    $player7_string_split = StringRegExpReplace($player7_string_all, '\s+', '/')
    $player7_string_split = StringReplace($player7_string_split, "^7", "")
    $player7_string_split = StringSplit($player7_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player8_string_all = $filearray[5]
    $player8_string_split = StringRegExpReplace($player8_string_all, '\s+', '/')
    $player8_string_split = StringReplace($player8_string_split, "^7", "")
    $player8_string_split = StringSplit($player8_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player9_string_all = $filearray[5]
    $player9_string_split = StringRegExpReplace($player9_string_all, '\s+', '/')
    $player9_string_split = StringReplace($player9_string_split, "^7", "")
    $player9_string_split = StringSplit($player9_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player10_string_all = $filearray[5]
    $player10_string_split = StringRegExpReplace($player10_string_all, '\s+', '/')
    $player10_string_split = StringReplace($player10_string_split, "^7", "")
    $player10_string_split = StringSplit($player10_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player11_string_all = $filearray[5]
    $player11_string_split = StringRegExpReplace($player11_string_all, '\s+', '/')
    $player11_string_split = StringReplace($player11_string_split, "^7", "")
    $player11_string_split = StringSplit($player11_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player12_string_all = $filearray[5]
    $player12_string_split = StringRegExpReplace($player12_string_all, '\s+', '/')
    $player12_string_split = StringReplace($player12_string_split, "^7", "")
    $player12_string_split = StringSplit($player12_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player13_string_all = $filearray[5]
    $player13_string_split = StringRegExpReplace($player13_string_all, '\s+', '/')
    $player13_string_split = StringReplace($player13_string_split, "^7", "")
    $player13_string_split = StringSplit($player13_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player14_string_all = $filearray[5]
    $player14_string_split = StringRegExpReplace($player14_string_all, '\s+', '/')
    $player14_string_split = StringReplace($player14_string_split, "^7", "")
    $player14_string_split = StringSplit($player14_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player15_string_all = $filearray[5]
    $player15_string_split = StringRegExpReplace($player15_string_all, '\s+', '/')
    $player15_string_split = StringReplace($player15_string_split, "^7", "")
    $player15_string_split = StringSplit($player15_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player16_string_all = $filearray[5]
    $player16_string_split = StringRegExpReplace($player16_string_all, '\s+', '/')
    $player16_string_split = StringReplace($player16_string_split, "^7", "")
    $player16_string_split = StringSplit($player16_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player17_string_all = $filearray[5]
    $player17_string_split = StringRegExpReplace($player17_string_all, '\s+', '/')
    $player17_string_split = StringReplace($player17_string_split, "^7", "")
    $player17_string_split = StringSplit($player17_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player18_string_all = $filearray[5]
    $player18_string_split = StringRegExpReplace($player18_string_all, '\s+', '/')
    $player18_string_split = StringReplace($player18_string_split, "^7", "")
    $player18_string_split = StringSplit($player18_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player19_string_all = $filearray[5]
    $player19_string_split = StringRegExpReplace($player19_string_all, '\s+', '/')
    $player19_string_split = StringReplace($player19_string_split, "^7", "")
    $player19_string_split = StringSplit($player19_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player20_string_all = $filearray[5]
    $player20_string_split = StringRegExpReplace($player20_string_all, '\s+', '/')
    $player20_string_split = StringReplace($player20_string_split, "^7", "")
    $player20_string_split = StringSplit($player20_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player21_string_all = $filearray[5]
    $player21_string_split = StringRegExpReplace($player21_string_all, '\s+', '/')
    $player21_string_split = StringReplace($player21_string_split, "^7", "")
    $player21_string_split = StringSplit($player21_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player22_string_all = $filearray[5]
    $player22_string_split = StringRegExpReplace($player22_string_all, '\s+', '/')
    $player22_string_split = StringReplace($player22_string_split, "^7", "")
    $player22_string_split = StringSplit($player22_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player23_string_all = $filearray[5]
    $player23_string_split = StringRegExpReplace($player23_string_all, '\s+', '/')
    $player23_string_split = StringReplace($player23_string_split, "^7", "")
    $player23_string_split = StringSplit($player23_string_split, "/")
    $place = $place + 1
    EndIf
    If $place < UBound($filearray, 1) - 1 Then
    $player24_string_all = $filearray[5]
    $player24_string_split = StringRegExpReplace($player24_string_all, '\s+', '/')
    $player24_string_split = StringReplace($player24_string_split, "^7", "")
    $player24_string_split = StringSplit($player24_string_split, "/")
    $place = $place + 1
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    $aButton[38] = GUICtrlCreateListView("ID|Score|Ping|GUID|Name|LastMsg|IP|QPort|Rate", 160, 275, 660, 195, -1, BitOR($LVS_EX_TRACKSELECT, $LVS_EX_FULLROWSELECT))
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 40)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 50)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 2, 40)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 3, 130)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 4, 100)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 5, 60)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 6, 120)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 7, 50)
    GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 8, 50)

    [/autoit] [autoit][/autoit] [autoit]

    $view1 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view2 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view3 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view4 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view5 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view6 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view7 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view8 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view9 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view10 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view11 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view12 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view13 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view14 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view15 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view16 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view17 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view18 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view19 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view20 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view21 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view22 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view23 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])
    $view24 = GUICtrlCreateListViewItem("|||||||||", $aButton[38])

    [/autoit] [autoit][/autoit] [autoit]

    If $place = 5 Then
    $view_platzhalter = GUICtrlSetData($view1, "/|/|/|/|/|/|/|/|/|")
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 5 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player1_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player1_string_split, 1) - 1 Step 9
    GUICtrlSetData($view1, $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "|||||||" & $player1_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view1, "||||||||" & $player1_string_split[$i])
    Next
    Else
    GUICtrlSetData($view1, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 6 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player2_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player2_string_split, 1) - 1 Step 9
    GUICtrlSetData($view2, $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "|||||||" & $player2_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view2, "||||||||" & $player2_string_split[$i])
    Next
    Else
    GUICtrlSetData($view2, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf
    If $place > 7 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player3_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player3_string_split, 1) - 1 Step 9
    GUICtrlSetData($view3, $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "|||||||" & $player3_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view3, "||||||||" & $player3_string_split[$i])
    Next
    Else
    GUICtrlSetData($view3, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 8 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player4_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player4_string_split, 1) - 1 Step 9
    GUICtrlSetData($view4, $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "|||||||" & $player4_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view4, "||||||||" & $player4_string_split[$i])
    Next
    Else
    GUICtrlSetData($view4, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 9 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player5_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player5_string_split, 1) - 1 Step 9
    GUICtrlSetData($view5, $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "|||||||" & $player5_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view5, "||||||||" & $player5_string_split[$i])
    Next
    Else
    GUICtrlSetData($view6, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 10 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player6_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player6_string_split, 1) - 1 Step 9
    GUICtrlSetData($view6, $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "|||||||" & $player6_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view6, "||||||||" & $player6_string_split[$i])
    Next
    Else
    GUICtrlSetData($view6, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 11 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player7_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player7_string_split, 1) - 1 Step 9
    GUICtrlSetData($view7, $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "|||||||" & $player7_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view7, "||||||||" & $player7_string_split[$i])
    Next
    Else
    GUICtrlSetData($view7, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 12 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player8_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player8_string_split, 1) - 1 Step 9
    GUICtrlSetData($view8, $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "|||||||" & $player8_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view8, "||||||||" & $player8_string_split[$i])
    Next
    Else
    GUICtrlSetData($view8, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 13 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player9_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player9_string_split, 1) - 1 Step 9
    GUICtrlSetData($view9, $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "|||||||" & $player9_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view9, "||||||||" & $player9_string_split[$i])
    Next
    Else
    GUICtrlSetData($view9, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 14 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player10_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player10_string_split, 1) - 1 Step 9
    GUICtrlSetData($view10, $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "|||||||" & $player10_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view10, "||||||||" & $player10_string_split[$i])
    Next
    Else
    GUICtrlSetData($view10, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 15 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player11_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player11_string_split, 1) - 1 Step 9
    GUICtrlSetData($view11, $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "|||||||" & $player11_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view11, "||||||||" & $player11_string_split[$i])
    Next
    Else
    GUICtrlSetData($view11, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 16 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player12_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player12_string_split, 1) - 1 Step 9
    GUICtrlSetData($view12, $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "|||||||" & $player12_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view12, "||||||||" & $player12_string_split[$i])
    Next
    Else
    GUICtrlSetData($view12, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 17 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player13_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player13_string_split, 1) - 1 Step 9
    GUICtrlSetData($view13, $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "|||||||" & $player13_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view13, "||||||||" & $player13_string_split[$i])
    Next
    Else
    GUICtrlSetData($view13, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 18 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player14_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player14_string_split, 1) - 1 Step 9
    GUICtrlSetData($view14, $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "|||||||" & $player14_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view14, "||||||||" & $player14_string_split[$i])
    Next
    Else
    GUICtrlSetData($view14, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 19 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player15_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player15_string_split, 1) - 1 Step 9
    GUICtrlSetData($view15, $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "|||||||" & $player15_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view15, "||||||||" & $player15_string_split[$i])
    Next
    Else
    GUICtrlSetData($view15, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 20 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player16_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player16_string_split, 1) - 1 Step 9
    GUICtrlSetData($view16, $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "|||||||" & $player16_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view16, "||||||||" & $player16_string_split[$i])
    Next
    Else
    GUICtrlSetData($view16, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 21 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player17_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player17_string_split, 1) - 1 Step 9
    GUICtrlSetData($view17, $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "|||||||" & $player17_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view17, "||||||||" & $player17_string_split[$i])
    Next
    Else
    GUICtrlSetData($view17, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 22 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player18_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player18_string_split, 1) - 1 Step 9
    GUICtrlSetData($view18, $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "|||||||" & $player18_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view18, "||||||||" & $player18_string_split[$i])
    Next
    Else
    GUICtrlSetData($view18, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 23 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player19_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player19_string_split, 1) - 1 Step 9
    GUICtrlSetData($view19, $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "|||||||" & $player19_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view19, "||||||||" & $player19_string_split[$i])
    Next
    Else
    GUICtrlSetData($view19, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 24 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player20_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player20_string_split, 1) - 1 Step 9
    GUICtrlSetData($view20, $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "|||||||" & $player20_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view20, "||||||||" & $player20_string_split[$i])
    Next
    Else
    GUICtrlSetData($view20, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 25 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player21_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player21_string_split, 1) - 1 Step 9
    GUICtrlSetData($view21, $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "|||||||" & $player21_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view21, "||||||||" & $player21_string_split[$i])
    Next
    Else
    GUICtrlSetData($view22, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 26 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player22_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player22_string_split, 1) - 1 Step 9
    GUICtrlSetData($view22, $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "|||||||" & $player22_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view22, "||||||||" & $player22_string_split[$i])
    Next
    Else
    GUICtrlSetData($view22, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 27 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player23_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player23_string_split, 1) - 1 Step 9
    GUICtrlSetData($view23, $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "|||||||" & $player23_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view23, "||||||||" & $player23_string_split[$i])
    Next
    Else
    GUICtrlSetData($view23, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $place > 28 Then

    [/autoit] [autoit][/autoit] [autoit]

    If IsArray($player24_string_split) Then

    [/autoit] [autoit][/autoit] [autoit]

    For $i = 2 To UBound($player24_string_split, 1) - 1 Step 9
    GUICtrlSetData($view24, $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "|||||||" & $player24_string_split[$i])
    $i = $i + 1
    GUICtrlSetData($view24, "||||||||" & $player24_string_split[$i])
    Next
    Else
    GUICtrlSetData($view24, "/|/|/|/|/|/|/|/|")
    EndIf
    EndIf

    [/autoit] [autoit][/autoit] [autoit]

    If $register = 0 Then
    AdlibRegister("header", 10000)
    $register = 1
    EndIf
    $place = 5
    EndFunc

    [/autoit]

    So wird sie dann alles 10 Sek aufgerufen : AdlibRegister("header", 10000)

  • Mal wieder ListView Probleme

    • MrB
    • 31. März 2010 um 17:51

    Sry, aber das kapier ich nicht. Du verkettest einen leeren String mit $string24[$i]. Irgendwie steh ich ziemlich auf dem Schlauch. Kannst du das mal an diesem Beispiel kurz machen pls?

    [autoit]


    For $i = 13 To UBound($string24, 1) - 1 Step 9
    GUICtrlCreateListViewItem($string24[$i (soll 13)] & "|" & $string24[$i (soll 14)] & "|" & $string24[$i (soll 15)] , $aButton[38])
    Next

    [/autoit]
  • Mal wieder ListView Probleme

    • MrB
    • 31. März 2010 um 17:01

    So, hab mir mal das Script von BugFix genommen und gestartet und es funktioniert nicht !
    Fehler gefunden! Man muss das Skript compilen, dann geht´s. Sry, wusste ich nicht. Vielleicht liegt´s auch an Win7. Macht sowieso Probleme mit AutoIt. Na, egal. Werd´s dann mal wieder einbauen und testen.

    Mal was anderes :)

    Ich fülle das TreeView folgender Maßen (wie schreibt man das eigentlich ?) :

    [autoit]


    For $i = 13 To UBound($string24, 1) - 1 Step 9
    GUICtrlCreateListViewItem($string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i] & "|" & $string24[$i], $aButton[38])
    Next

    [/autoit]


    $i ist 13 weil die ersten 13 Einträge nicht benötigt werden. So, er würde ja jetzt überall $string24[13] rein schreiben. Nur möchte ich das in der 2ten Spalte $string24[14] ind der 3ten $string24[15] usw. steht. Wie sag ich ihm das er $i jeweils eins höher setzt. Hab´s mal mit $string24[$i= $i + 1] oder $string24[$i + 1] usw probiert, funktioniert nicht. Grrr, meine Unwissenheit (vornehm ausgedrückt) stört mich ja schon selber, sry.

  • Mal wieder ListView Probleme

    • MrB
    • 31. März 2010 um 00:23

    Hab´s im Moment so:

    [autoit]

    $aButton[38] = GUICtrlCreateListView("ID|Ping", 480, 210, 310, 300, BitOR($LVS_EX_HEADERDRAGDROP, $LVS_EX_GRIDLINES), BitOR($LVS_EX_TRACKSELECT, $LVS_EX_FULLROWSELECT))

    [/autoit]

    $hListView in der Function geändert auf $aButton[38]

    Aber jetzt schreit erstmal das Bettchen ! Bis morgen

  • Mal wieder ListView Probleme

    • MrB
    • 30. März 2010 um 23:42

    UP !

  • String Fragen

    • MrB
    • 30. März 2010 um 23:41

    Oh Mann, muss ich mir unbedingt mal genauer anschauen. Mal wieder Big THX

  • String Fragen

    • MrB
    • 30. März 2010 um 23:13

    Hmm doch noch was

    Folgender String (Beispiel): 11 2222 abcd efgh 4 6 dada
    nach
    11/2222/abcd/efgh/4/6/dada

    Frage: Wie ? 8)

    Ich kriegs zwar hin das alle Leerzeichen mit einem / ersetzt werden nur dann sieht der String so aus: 11///2222/abcd///efgh///4/6////dada

    _StringBetween gibt ja ein Array aus. Wie bekomme ich die Anzahl der Einträge raus ? Hab´s denke ich. Müsste mit UBound gehen

  • Rcon und AutoIt

    • MrB
    • 30. März 2010 um 22:33

    Wie gesagt ModernRcon. Denke aber ich bekomme es hin. Wireshark ist ja nicht schlecht.

  • Rcon und AutoIt

    • MrB
    • 30. März 2010 um 22:02

    Schon klar. Einige Befehle (Kick,Kick all, say usw) funktionieren auch, aber nicht alle. Mit der MsgBox hatte ich auch schon getestet. Das er den Header sendet ist auch klar nur was bedeutet

    [autoit]

    & @CRLF & _
    "." & @CRLF & @CRLF

    [/autoit]


    Ich weis zwar wie der Header im Klartext aussieht nur nicht was er bedeutet. :(

    Ach ja, wie schau ich mir die Kommunikation eines Admintools (ModernRCon) denn an ? Hab mich damit noch nie beschäftigt.


    Ok, hat sich erledigt. Danke L3viathan

  • Rcon und AutoIt

    • MrB
    • 30. März 2010 um 21:48

    Geht um COD4 MW. Ich weis nicht wirklich in welchem Format die Befehle gesendet werden müssen und was man alles senden kann!

    [autoit]


    UDPStartup()
    $iSocket = UDPOpen($ip, $port)
    $sHeader = "ÿÿÿÿ serverinfo " & @CRLF & _
    "." & @CRLF & @CRLF
    UDPSend($iSocket, $sHeader)
    Do
    $srecv = UDPRecv($iSocket, 4096)
    Until $srecv <> ""
    UDPCloseSocket($iSocket)
    UDPShutdown()

    [/autoit]

    Den Header hab ich mir aus dem Netz geklaut auch wenn ich den nicht wirklich verstehe.

  • Rcon und AutoIt

    • MrB
    • 30. März 2010 um 21:39

    Sers,

    Heute geht´s aber rund. Kennt sich einer mit Rcon via AutoIt aus.

    Bevor das Geschrei los geht: KEIN BOT, KEIN KACKING ähh HACKING usw. sondern nur ein Admintool. Ich weis das es nicht wirklich gerne hier gesehen wird, wenn man AutoIt in Verbindung mit Games bringt. Wurde aber gefragt, ob es möglich wäre. Hab auch schon einiges hin bekommen, aber nicht alles :-(. Erstmal schauen, ob sich damit überhaupt einer auskennt.

    MfG

  • String Fragen

    • MrB
    • 30. März 2010 um 21:06

    BugFix

    OH MANN ICH KRIEG DIE KRÄTZE. Man kann man blöd sein. Funktioniert. DANKE

    @black_skorpi

    Hach da war einer schneller und hat auch noch recht :)

Spenden

Jeder Euro hilft uns, Euch zu helfen.

Download

AutoIt Tutorial
AutoIt Buch
Onlinehilfe
AutoIt Entwickler
  1. Datenschutzerklärung
  2. Impressum
  3. Shoutbox-Archiv
Community-Software: WoltLab Suite™