Jump to content

_GetTopicInfo isn't working, but why?


Recommended Posts

I put a debug message box because this wasn't working, and it's returning false? What...??? Yeah...Either i'm making a really stupid mistake or something. Heres my code, this cannot be ran yet, as it's not working, because it fails on that message box.

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Inet.au3>

Opt("TrayMenuMode", 1)
Global $Ini = @TempDir&"\Topics"
Global $Section = "Topics"


$NewReplies = TrayCreateMenu("Check for new replies")
$TrayShow = TrayCreateItem("Show GUI")
$Exit = TrayCreateItem("Exit")

#Region ### START Koda GUI section ### Form=
$Form1_1 = GUICreate("Swift's Topic Watcher", 279, 150, 280, 255)
Global $Edit1 = GUICtrlCreateEdit("", 8, 24, 265, 89, BitOR($ES_AUTOVSCROLL,$ES_AUTOHSCROLL,$ES_WANTRETURN,$WS_VSCROLL))
GUICtrlSetData(-1, "")
$Label1 = GUICtrlCreateLabel("Topics to watch for new replies. Use topic ID eg. 81250", 8, 8, 263, 17)
$Button1 = GUICtrlCreateButton("Engage Topic Watch", 8, 120, 123, 25)
$Button2 = GUICtrlCreateButton("Disengage Topic Watch", 136, 120, 139, 25)
GUISetState()
#EndRegion ### END Koda GUI section ###

$Form1 = GUICreate("New Post!", 177, 71, 426, 364)
$Input1 = GUICtrlCreateInput(" Your Topic Has New Replies!!!", 8, 8, 161, 21, BitOR($ES_AUTOHSCROLL,$ES_READONLY))
GUICtrlSetState($Input1, $GUI_DISABLE)
$ButtonLaunch = GUICtrlCreateButton("Launch Topic!", 8, 40, 163, 25, 0)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $Button1
            GUISetState(@SW_HIDE, $Form1_1)
            $Bleh = GUICtrlRead($Edit1)
            MsgBox(262144,'Debug line ~' & @ScriptLineNumber,'Selection:' & @lf & '$Bleh = GUICtrlRead($Edit1)' & @lf & @lf & 'Return:' & @lf & $Bleh = GUICtrlRead($Edit1)) ;### Debug MSGBOX
            If StringInStr($Bleh, @CRLF) Then
                $TopicArray = StringSplit($Bleh, @CRLF)
                Dim $Topics[$TopicArray[0]]
                $Topics[0] = $TopicArray[0]
                For $i=1 To $TopicArray[0]
                    $PostInfo = _InetGetPostInfo($TopicArray[$i]
                    IniWrite($ini, $Section, $TopicArray[$i], $PostInfo[3])
                    $Topics[$i] = TrayCreateItem("ID = "&$TopicArray[$i], $NewReplies)
                Next
            Else
                Dim $Topics[2]
                $Topics[0] = 1
                $PostInfo = _InetGetPostInfo($Bleh)
                IniWrite($Ini, $Section, $Bleh, $PostInfo[3])
                TrayCreateItem("ID = "&$Bleh, $NewReplies)
            EndIf
            AdlibEnable("Replies", 60000)
            $Reply = TrayCreateItem("All", $NewReplies)
    EndSwitch
    $tMsg = TrayGetMsg()
    Switch $tMsg
        Case $Exit
            Exit
        Case $TrayShow
            GUISetState(@SW_SHOW, $Form1_1)
        Case $NewReplies
            For $i=1 To $Topics[0]
                $PostInfo = _InetGetPostInfo($Topics[0])
                If Not IniRead($Ini, $Section, $Topics[$i], "") = $PostInfo[3] Then _GUI($Topics[$i])
            Next
        If IsDeclared("Reply") Then
            If $tMsg = $Reply Then Replies()
        EndIf
    EndSwitch
WEnd

Func _GUI($Topic)
    GUISetState(@SW_SHOW, $Form1)
    While 1
        $a = GUIGetMsg()
        Switch $a
            Case $ButtonLaunch
                ShellExecute("http://www.autoitscript.com/forum/index.php?showtopic="&$Topic&"&hl=")
                GUISetState(@SW_HIDE, $Form1)
                $g = _InetGetPostInfo($Topic)
                IniWrite($Ini, $Section, $Topic, $g[3])
                ExitLoop
            Case -3
                $g = _InetGetPostInfo($Topic)
                GUISetState(@SW_HIDE, $Form1)
                ExitLoop
                IniWrite($Ini, $Section, $Topic, $g[3])
        EndSwitch
        GUICtrlSetBkColor($Input1, 0xFF0000)
        Sleep(50)
        GUICtrlSetBkColor($Input1, 0xFFFF00)
    WEnd
EndFunc

Func Replies()
    $Topics = IniReadSection($Ini, $Section)
    For $i=1 To $Topics[0][0]
        $Info = _InetGetPostInfo($Topics[$i])
        If Not $Topics[$i][$i] = $Info[3] Then _GUI($Topics[$i][0])
    Next
EndFunc

Func _InetGetPostInfo($i_topic_number)
    Local $s_url = "http://www.autoitscript.com/forum/index.php?showtopic=" & $i_topic_number & "&st="
    Local $s_html = _InetGetSource($s_url)
    Local $a_sre_post_per_page = StringRegExp($s_html, '(?i)return false;">#(\d+)', 3)
    If @error Then Return SetError(1, 0, 0)
    Local $i_pages = 1
    Local $a_sre_pages = StringRegExp($s_html, "(?i)'page-jump'>(\d+)", 1)
    If Not @error Then $i_pages = $a_sre_pages[0]
    Local $i_post_per_page = UBound($a_sre_post_per_page)
    Local $i_last_page_post_count = (($i_pages - 1) * $i_post_per_page)
    Local $a_last_post = StringRegExp(_InetGetSource($s_url & $i_last_page_post_count), '(?i)return false;">#(\d+)', 3)
    If @error Then Return SetError(2, 0, 0)
    Local $a_return[4] = [$i_post_per_page, $i_pages, _
        "http://www.autoitscript.com/forum/index.php?showtopic=" & $i_topic_number & "&st=" & $i_last_page_post_count, _
        $i_last_page_post_count + UBound($a_last_post)]
    Return $a_return
EndFunc

Func Close()
    Exit
EndFunc
Edited by SwiftBurns
Link to comment
Share on other sites

  • Moderators

You also don't do error checking. If @error should go after _InetGetPostInfo so you don't get non array subscript errors.

And you seriously don't see issues with this?

$Bleh = GUICtrlRead($Edit1)

MsgBox(262144,'Debug line ~' & @ScriptLineNumber,'Selection:' & @lf & '$Bleh = GUICtrlRead($Edit1)' & @lf & @lf & 'Return:' & @lf & $Bleh = GUICtrlRead($Edit1))??

Do as was suggested in post number 2

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Well, I tested your code. $PostInfo[3] isn't anything.

I notice you have @TempDir&"\Topics"

How are you populating your array?

Wow, I am stupid. It's supposted to be @TempDir&"\topics.ini", but that still doesn't fix the $PostInfo error. My $PostInfo array is SmOke_N's function that gets the number of posts in a topic.
Link to comment
Share on other sites

  • Moderators

So, SmOke_N, you got any clue why it's failing in here, but not as just a one time call?

Nope, haven't even bothered to look at it actually.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Hmm. This works:

#include <Inet.au3>

Local $a_post_info = _InetGetPostInfo(81925)
If @error Then
    MsgBox(16, "Error", "Error#: " & @error)
Else
    MsgBox(64, "Info", $a_post_info[3])
EndIf

Func _InetGetPostInfo($i_topic_number)
    Local $s_url = "http://www.autoitscript.com/forum/index.php?showtopic=" & $i_topic_number & "&st="
    Local $s_html = _InetGetSource($s_url)
    Local $a_sre_post_per_page = StringRegExp($s_html, '(?i)return false;">#(\d+)', 3)
    If @error Then Return SetError(1, 0, 0)
    Local $i_pages = 1
    Local $a_sre_pages = StringRegExp($s_html, "(?i)'page-jump'>(\d+)", 1)
    If Not @error Then $i_pages = $a_sre_pages[0]
    Local $i_post_per_page = UBound($a_sre_post_per_page)
    Local $i_last_page_post_count = (($i_pages - 1) * $i_post_per_page)
    Local $a_last_post = StringRegExp(_InetGetSource($s_url & $i_last_page_post_count), '(?i)return false;">#(\d+)', 3)
    If @error Then Return SetError(2, 0, 0)
    Local $a_return[4] = [$i_post_per_page, $i_pages, _
        "http://www.autoitscript.com/forum/index.php?showtopic=" & $i_topic_number & "&st=" & $i_last_page_post_count, _
        $i_last_page_post_count + UBound($a_last_post)]
    Return $a_return
EndFuncoÝ÷ Ù8b±Ú²}ýµ«­¢+Ø¥¹±Õ±Ðí ÕÑѽ¹
½¹ÍѹÑ̹ÔÌÐì(¥¹±Õ±Ðí¥Ñ
½¹ÍѹÑ̹ÔÌÐì(¥¹±Õ±ÐíU%
½¹ÍѹÑÍà¹ÔÌÐì(¥¹±Õ±ÐíMÑÑ¥
½¹ÍѹÑ̹ÔÌÐì(¥¹±Õ±Ðí]¥¹½ÝÍ
½¹ÍѹÑ̹ÔÌÐì(¥¹±Õ±Ðí%¹Ð¹ÔÌÐì()=ÁÐ ÅÕ½ÐíQÉå5¹Õ5½ÅÕ½Ðì°Ä¤)±½°ÀÌØí%¹¤ôQµÁ¥ÈµÀìÅÕ½ÐìÀäÈíQ½Á¥Ì¹¥¹¤ÅÕ½Ðì)±½°ÀÌØíMÑ¥½¸ôÅÕ½ÐíQ½Á¥ÌÅÕ½Ðì(((ÀÌØí9ÝIÁ±¥ÌôQÉå
ÉÑ5¹Ô ÅÕ½Ðí
¡¬½È¹ÜÉÁ±¥ÌÅÕ½Ðì¤(ÀÌØíQÉåM¡½ÜôQÉå
ÉÑ%Ñ´ ÅÕ½ÐíM¡½ÜU$ÅÕ½Ðì¤(ÀÌØíá¥ÐôQÉå
ÉÑ%Ñ´ ÅÕ½Ðíá¥ÐÅÕ½Ðì¤((I¥½¸MQIP-½U$ÍÑ¥½¸½É´ô(ÀÌØí½É´Å|ÄôU%
ÉÑ ÅÕ½ÐíMÝ¥ÐÌäíÌQ½Á¥]Ñ¡ÈÅÕ½Ðì°ÈÜä°ÄÔÀ°ÈàÀ°ÈÔÔ¤)±½°ÀÌØí¥ÐÄôU%
Ñɱ
ÉѥРÅÕ½ÐìÅÕ½Ðì°à°ÈаÈØÔ°àä° ¥Ñ=H ÀÌØíM}UQ=YM
I=10°ÀÌØíM}UQ=!M
I=10°ÀÌØíM}]9QIQUI8°ÀÌØí]M}YM
I=10¤¤)U%
ÑɱMÑÑ ´Ä°ÅÕ½ÐìÅÕ½Ðì¤(ÀÌØí1°ÄôU%
Ñɱ
ÉÑ1° ÅÕ½ÐíQ½Á¥ÌѼÝÑ ½È¹ÜÉÁ±¥Ì¸UÍѽÁ¥%¸àÄÈÔÀÅÕ½Ðì°à°à°ÈØÌ°Äܤ(ÀÌØí ÕÑѽ¸ÄôU%
Ñɱ
ÉÑ    ÕÑѽ¸ ÅÕ½Ðí¹Q½Á¥]Ñ ÅÕ½Ðì°à°ÄÈÀ°ÄÈÌ°ÈÔ¤(ÀÌØí   ÕÑѽ¸ÈôU%
Ñɱ
ÉÑ    ÕÑѽ¸ ÅÕ½Ðí¥Í¹Q½Á¥]Ñ ÅÕ½Ðì°ÄÌØ°ÄÈÀ°ÄÌä°ÈÔ¤)U%MÑMÑÑ ¤(¹I¥½¸9-½U$ÍÑ¥½¸((ÀÌØí½É´ÄôU%
ÉÑ ÅÕ½Ðí9ÜA½ÍÐÌÌìÅÕ½Ðì°ÄÜÜ°ÜÄ°ÐÈØ°ÌØФ(ÀÌØí%¹ÁÕÐÄôU%
Ñɱ
ÉÑ%¹ÁÕÐ ÅÕ½Ðìe½ÕÈQ½Á¥!Ì9ÜIÁ±¥ÌÌÌìÌÌìÌÌìÅÕ½Ðì°à°à°ÄØÄ°ÈÄ°   ¥Ñ=H ÀÌØíM}UQ=!M
I=10°ÀÌØíM}I=91d¤¤)U%
ÑɱMÑMÑÑ ÀÌØí%¹ÁÕÐÄ°ÀÌØíU%}%M   1¤(ÀÌØí    ÕÑѽ¹1Õ¹ ôU%
Ñɱ
ÉÑ    ÕÑѽ¸ ÅÕ½Ðí1Õ¹ Q½Á¥ÌÌìÅÕ½Ðì°à°ÐÀ°ÄØÌ°ÈÔ°À¤()]¡¥±Ä($ÀÌØí¹5ÍôU%Ñ5Í ¤(%MÝ¥Ñ ÀÌØí¹5Í($%
ÍÀÌØíU%}Y9Q}
1=M($$%á¥Ð($%
ÍÀÌØí  ÕÑѽ¸Ä($$%U%MÑMÑÑ¡M]}!%°ÀÌØí½É´Å|Ĥ($$$ÀÌØí    ± ôU%
ÑɱI ÀÌØí¥ÐĤ($$%%MÑÉ¥¹%¹MÑÈ ÀÌØí ± °
I1¤Q¡¸($$$$ÀÌØíQ½Á¥ÉÉäôMÑÉ¥¹MÁ±¥Ð ÀÌØí    ± °
I1¤($$$%¥´ÀÌØíQ½Á¥ÍlÀÌØíQ½Á¥ÉÉålÁut($$$$ÀÌØíQ½Á¥ÍlÁtôÀÌØíQ½Á¥ÉÉålÁt($$$%½ÈÀÌØí¤ôÄQ¼ÀÌØíQ½Á¥ÉÉålÁt($$$$$ÀÌØíA½ÍÑ%¹¼ô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØíQ½Á¥ÉÉålÀÌØí¥t¤¤($$$$%%¹¥]É¥Ñ ÀÌØí¥¹¤°ÀÌØíMÑ¥½¸°ÀÌØíQ½Á¥ÉÉålÀÌØí¥t°ÀÌØíA½ÍÑ%¹½lÍt¤($$$$$ÀÌØíQ½Á¥ÍlÀÌØí¥tôQÉå
ÉÑ%Ñ´ ÅÕ½Ðí%ôÅÕ½ÐìµÀìÀÌØíQ½Á¥ÉÉålÀÌØí¥t°ÀÌØí9ÝIÁ±¥Ì¤($$$%9áÐ($$%±Í($$$%¥´ÀÌØíQ½Á¥ÍlÉt($$$$ÀÌØíQ½Á¥ÍlÁtôÄ($$$$ÀÌØíA½ÍÑ%¹¼ô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØí ± ¤¤($$$%%¹¥]É¥Ñ ÀÌØí%¹¤°ÀÌØíMÑ¥½¸°ÀÌØí ± °ÀÌØíA½ÍÑ%¹½lÍt¤($$$%QÉå
ÉÑ%Ñ´ ÅÕ½Ðí%ôÅÕ½ÐìµÀìÀÌØí ± °ÀÌØí9ÝIÁ±¥Ì¤($$%¹%($$%±¥¹± ÅÕ½ÐíIÁ±¥ÌÅÕ½Ðì°ØÀÀÀÀ¤($$$ÀÌØíIÁ±äôQÉå
ÉÑ%Ñ´ ÅÕ½Ðí±°ÅÕ½Ðì°ÀÌØí9ÝIÁ±¥Ì¤(%¹MÝ¥Ñ ($ÀÌØíÑ5ÍôQÉåÑ5Í ¤(%MÝ¥Ñ ÀÌØíÑ5Í($%
ÍÀÌØíá¥Ð($$%á¥Ð($%
ÍÀÌØíQÉåM¡½Ü($$%U%MÑMÑÑ¡M]}M!=°ÀÌØí½É´Å|Ĥ($%
ÍÀÌØí9ÝIÁ±¥Ì($$%½ÈÀÌØí¤ôÄQ¼ÀÌØíQ½Á¥ÍlÁt($$$$ÀÌØíA½ÍÑ%¹¼ô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØíQ½Á¥ÍlÁt¤¤($$$%%9½Ð%¹¥I ÀÌØí%¹¤°ÀÌØíMÑ¥½¸°ÀÌØíQ½Á¥ÍlÀÌØí¥t°ÅÕ½ÐìÅÕ½Ðì¤ôÀÌØíA½ÍÑ%¹½lÍtQ¡¸}U$ ÀÌØíQ½Á¥ÍlÀÌØí¥t¤($$%9áÐ($%%%걃 ÅÕ½ÐíIÁ±äÅÕ½Ðì¤Q¡¸($$%%ÀÌØíÑ5ÍôÀÌØíIÁ±äQ¡¸IÁ±¥Ì ¤($%¹%(%¹MÝ¥Ñ )]¹()Õ¹}U$ ÀÌØíQ½Á¥¤(%U%MÑMÑÑ¡M]}M!=°ÀÌØí½É´Ä¤(%]¡¥±Ä($$ÀÌØíôU%Ñ5Í ¤($%MÝ¥Ñ ÀÌØí($$%
ÍÀÌØí  ÕÑѽ¹1Õ¹ ($$$%M¡±±áÕÑ ÅÕ½Ðí¡ÑÑÀè¼½ÝÝܹÕѽ¥ÑÍÉ¥Áй½´½½ÉÕ´½¥¹à¹Á¡ÀýÍ¡½ÝѽÁ¥ôÅÕ½ÐìµÀìÀÌØíQ½Á¥µÀìÅÕ½ÐìµÀí¡°ôÅÕ½Ðì¤($$$%U%MÑMÑÑ¡M]}!%°ÀÌØí½É´Ä¤($$$$ÀÌØíô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØíQ½Á¥¤¤($$$%%¹¥]É¥Ñ ÀÌØí%¹¤°ÀÌØíMÑ¥½¸°ÀÌØíQ½Á¥°ÀÌØílÍt¤($$$%á¥Ñ1½½À($$%
Í´Ì($$$$ÀÌØíô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØíQ½Á¥¤¤($$$%U%MÑMÑÑ¡M]}!%°ÀÌØí½É´Ä¤($$$%á¥Ñ1½½À($$$%%¹¥]É¥Ñ ÀÌØí%¹¤°ÀÌØíMÑ¥½¸°ÀÌØíQ½Á¥°ÀÌØílÍt¤($%¹MÝ¥Ñ ($%U%
ÑɱMÑ   ­
½±½È ÀÌØí%¹ÁÕÐÄ°ÁáÀÀÀÀ¤($%M±À ÔÀ¤($%U%
ÑɱMÑ   ­
½±½È ÀÌØí%¹ÁÕÐÄ°ÁáÀÀ¤(%]¹)¹Õ¹()Õ¹IÁ±¥Ì ¤($ÀÌØíQ½Á¥Ìô%¹¥IMÑ¥½¸ ÀÌØí%¹¤°ÀÌØíMÑ¥½¸¤(%½ÈÀÌØí¤ôÄQ¼ÀÌØíQ½Á¥ÍlÁulÁt($$ÀÌØí%¹¼ô}%¹ÑÑA½ÍÑ%¹¼¡9ÕµÈ ÀÌØíQ½Á¥ÍlÀÌØí¥t¤¤($%%9½ÐÀÌØíQ½Á¥ÍlÀÌØí¥ulÀÌØí¥tôÀÌØí%¹½lÍtQ¡¸}U$ ÀÌØíQ½Á¥ÍlÀÌØí¥ulÁt¤(%9áÐ)¹Õ¹()Õ¹}%¹ÑÑA½ÍÑ%¹¼ ÀÌØí¥}ѽÁ¥}¹ÕµÈ¤(1½°ÀÌØíÍ}ÕÉ°ôÅÕ½Ðí¡ÑÑÀè¼½ÝÝܹÕѽ¥ÑÍÉ¥Áй½´½½ÉÕ´½¥¹à¹Á¡ÀýÍ¡½ÝѽÁ¥ôÅÕ½ÐìµÀìÀÌØí¥}ѽÁ¥}¹ÕµÈ(1½°ÀÌØíÍ}¡Ñµ°ô}%¹ÑÑM½ÕÉ ÀÌØíÍ}ÕÉ°¤(%5Í  ½à À°ÅÕ½ÐìÅÕ½Ðì°ÀÌØíÍ}¡Ñµ°¤(1½°ÀÌØí}ÍÉ}Á½ÍÑ}ÁÉ}ÁôMÑÉ¥¹IáÀ ÀÌØíÍ}¡Ñµ°°Ìäì ý¤¥ÉÑÕɸ±ÍìÅÕ½ÐìÐì ÀäÈí¬¤Ìäì°Ì¤(%ÉɽÈQ¡¸IÑÕɸMÑÉÉ½È Ä°À°À¤(1½°ÀÌØí¥}ÁÌôÄ(1½°ÀÌØí}ÍÉ}ÁÌôMÑÉ¥¹IáÀ ÀÌØíÍ}¡Ñµ°°ÅÕ½Ðì ý¤¤ÌäíÁµ©ÕµÀÌäìÐì ÀäÈí¬¤ÅÕ½Ðì°Ä¤(%9½ÐÉɽÈQ¡¸ÀÌØí¥}ÁÌôÀÌØí}ÍÉ}ÁÍlÁt(1½°ÀÌØí¥}Á½ÍÑ}ÁÉ}ÁôU  ½Õ¹ ÀÌØí}ÍÉ}Á½ÍÑ}ÁÉ}Á¤(1½°ÀÌØí¥}±ÍÑ}Á}Á½ÍÑ}½Õ¹Ðô  ÀÌØí¥}Á̴Ĥ¨ÀÌØí¥}Á½ÍÑ}ÁÉ}Á¤(1½°ÀÌØí}±ÍÑ}Á½ÍÐôMÑÉ¥¹IáÀ¡}%¹ÑÑM½ÕÉ ÀÌØíÍ}ÕÉ°µÀìÀÌØí¥}±ÍÑ}Á}Á½ÍÑ}½Õ¹Ð¤°Ìäì ý¤¥ÉÑÕɸ±ÍìÅÕ½ÐìÐì ÀäÈí¬¤Ìäì°Ì¤(%ÉɽÈQ¡¸IÑÕɸMÑÉÉ½È È°À°À¤(1½°ÀÌØí}ÉÑÕɹlÑtôlÀÌØí¥}Á½ÍÑ}ÁÉ}Á°ÀÌØí¥}ÁÌ°|(ÅÕ½Ðí¡ÑÑÀè¼½ÝÝܹÕѽ¥ÑÍÉ¥Áй½´½½ÉÕ´½¥¹à¹Á¡ÀýÍ¡½ÝѽÁ¥ôÅÕ½ÐìµÀìÀÌØí¥}ѽÁ¥}¹ÕµÈµÀìÅÕ½ÐìµÀíÍÐôÅÕ½ÐìµÀìÀÌØí¥}±ÍÑ}Á}Á½ÍÑ}½Õ¹Ð°|(ÀÌØí¥}±ÍÑ}Á}Á½ÍÑ}½Õ¹Ð¬U ½Õ¹ ÀÌØí}±ÍÑ}Á½ÍÐ¥t(IÑÕɸÀÌØí}ÉÑÕɸ)¹Õ¹()Õ¹
±½Í ¤(%á¥Ð)¹Õ¹
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...