Jump to content

Script Freezing


Phaethon
 Share

Recommended Posts

Hello everyone. I am currently writing a macro, in which I'm using the pixel search function. When I search for a certain one, my script lags, freezes, and stops working altogether. I think it might be beacuse there is more of this pixel on the screen than the others I am using. If this is the case, is there a way to fix this?

Here is the code snippet where I think the problem is. If anyone needs the whole script to help me, I can post that aswell on request.

$coord = PixelSearch(0,0,1024,1280,0x4D2F23,0)
If not @error Then
Sleep(2000)
MouseMove($coord[0],$coord[1])

Any help is appreciated!

Coder's Helper >> Here[center][/center]

Link to comment
Share on other sites

well it is lagging because you are searching the entire screen which can be a long process. The amount of pixels on the screen should not have an effect because pixel search stops once it finds a pixel. Can you post the rest of the scipt

Link to comment
Share on other sites

#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.2.6.0
 Author: Matt

 Script Function:
    AutoMiner By Matt of RSFORUMS.ORG

#ce ----------------------------------------------------------------------------
#include <GUIConstants.au3>
#include <Function_Library.au3>
GUICreate("Rsforums.org's AutoMiner v1",330,280,-1,-1,$WS_SIZEBOX+$WS_SYSMENU)
GUISetBkColor (0xFFFFFF)
$n=GUICtrlCreatePic("C:\images\ores.gif",100,60,103,125)
GUICtrlCreateLabel("Rsforums.org's AutoMiner.  Made by Matt.", 10,10)
GUICtrlCreateLabel("For optimum performance, be playing RuneScape on low detail.",10,30)
GUICtrlCreateLabel("To begin, click 'start mining'.", 10,50)
$okbutton = GuiCtrlCreateButton ("Start Mining",50,200,70,20)
$cancelbutton = GuiCtrlCreateButton ("Done",180,200,70,20)

GuiSetState()

While 1
    $msg = GUIGetMsg()
    Select 
        Case $msg = $okbutton
                $mine = InputBox("How many loads?", "How many loads would you like to mine? (Numbers only please)")
                $type = InputBox("What type?", "What type of ore would you like to mine? Please enter only the first letter.  (Iron, Copper and Tin are supported)")
                    
                    If $type = "i" Then
                        $mined = 0
                        $varMin = 0
                        $loads = 0
                        $random_event = 0
                        Sleep(1000)
                        Do
                            $sleep = Random(90,150)
                            $minewait = Random(3000,4200)
                            $coord = PixelSearch(0,0,1024,1280,0x4D2F23,0)
                                If not @error Then
                                Sleep(2000)
                                MouseMove($coord[0],$coord[1])
                                MouseDown("left")
                                Sleep($sleep)
                                MouseUp("left")
                                Sleep($minewait)
                                $mined = $mined + 1
                                $varMin = $varMin + 1
                                $random_event = $random_event + 1
                                Else
                                $mined = $mined
                                Endif
                                    If $varMin = 28 Then
                                    $droped = 0
                                    Do
                                    Irondrop()
                                    $droped = $droped + 1
                                    $loads = $loads + 1
                                    until $droped = 28
                                    $varMin = 0
                                    EndIf
                                        If $random_event = 3 Then
                                        RandomEvent()
                                        $random_event = 0
                                        Endif
                        Until $mine = $loads
                            Finished()
                    Endif
                    
                    If $type = "t" Then
                        $mined = 0
                        $varMin = 0
                        $loads = 0
                        $random_event = 0
                        Do
                            $sleep = Random(90,150)
                            $minewait = Random(3000,4200)
                            $coord = PixelSearch(0,0,1024,1280,0x8A8180,0)
                                If not @error Then
                                Sleep(2000)
                                MouseMove($coord[0],$coord[1])
                                MouseDown("left")
                                Sleep($sleep)
                                MouseUp("left")
                                Sleep($minewait)
                                $mined = $mined + 1
                                $varMin = $varMin + 1
                                $random_event = $random_event + 1
                                Else
                                $mined = $mined
                                Endif
                                    If $varMin = 28 Then
                                    $droped = 0
                                    Do
                                    TinDrop()
                                    $droped = $droped + 1
                                    $loads = $loads + 1
                                    until $droped = 28
                                    $varMin = 0
                                    EndIf
                                        If $random_event = 3 Then
                                        RandomEvent()
                                        $random_event = 0
                                        Endif
                        Until $mine = $loads
                            Finished()
                    Endif   

                    If $type = "c" Then
                        $mined = 0
                        $varMin = 0
                        $loads = 0
                        $random_event = 0
                        Do
                            $sleep = Random(90,150)
                            $minewait = Random(3000,4200)
                            $coord = PixelSearch(0,0,1024,1280,0x916843,0)
                                If not @error Then
                                Sleep(2000)
                                MouseMove($coord[0],$coord[1])
                                MouseDown("left")
                                Sleep($sleep)
                                MouseUp("left")
                                Sleep($minewait)
                                $mined = $mined + 1
                                $varMin = $varMin + 1
                                $random_event = $random_event + 1
                                Else
                                $mined = $mined
                                Endif
                                    If $varMin = 28 Then
                                    $droped = 0
                                    Do
                                    CopperDrop()
                                    $droped = $droped + 1
                                    $loads = $loads + 1
                                    until $droped = 28
                                    $varMin = 0
                                    EndIf
                                        If $random_event = 3 Then
                                        RandomEvent()
                                        $random_event = 0
                                        Endif
                        Until $mine = $loads
                            Finished()
                    Endif                           
        
        Case $msg = $cancelbutton
            Exit
        Case $msg = $GUI_EVENT_CLOSE
            Exit
        
    
    
    EndSelect
WEnd

I thought that searching the whole screen was not too great of an idea aswell. Weird thing though is that when I use the "t" option, it works ok (still a bit slow, but it works).

I am working with an applet that is generally in/near the middle of your screen, and I want this to be able to work in any resolution. Any ideas what optimum coordinates in the pixelsearch would be for this?

Coder's Helper >> Here[center][/center]

Link to comment
Share on other sites

I suppose it's for runescape then :)

I'd really like to make my own, for a forum that I run. But if you wanted to let me look at the source for yours, I wouldn't be too sad :) (And maybe some anti randoms if you have programed any in, I have a few, but am having trouble for some :P )

Coder's Helper >> Here[center][/center]

Link to comment
Share on other sites

Weird thing though is that when I use the "t" option, it works ok (still a bit slow, but it works). ...... Any ideas what optimum coordinates in the pixelsearch would be for this?

You script is calling external function that I'm guessing are tucked in Function_Library.au3. Since you didn't include those I'm going to guess that your problem is with your CooperDrop() and Irondrop() functions since you say "t" works. The only difference between your If...EndIf statements is your $coord = PixelSearch(0,0,1024,1280, .... ,0) and the CooperDrop(), Irondrop(), and TinDrop().

That said I took the liberty to clean up your script. Understand without the Function_Library.au3 file and being I'm not a gamer I'm not able to test this revised script. Hope you find the problem inside your other functions.

#cs ----------------------------------------------------------------------------
    
    AutoIt Version: 3.2.6.0
    Author: Matt
    
    Script Function:
    AutoMiner By Matt of RSFORUMS.ORG 
        Cleaned up by ssubirias3 of http://www.autoitscript.com/forum/index.php
    
#ce ----------------------------------------------------------------------------
#include <GUIConstants.au3>
#include <Function_Library.au3>

GUICreate("Rsforums.org's AutoMiner v1", 330, 280, -1, -1, $WS_SIZEBOX + $WS_SYSMENU)
GUISetBkColor(0xFFFFFF)
$n = GUICtrlCreatePic("C:\images\ores.gif", 100, 60, 103, 125)
GUICtrlCreateLabel("Rsforums.org's AutoMiner.  Made by Matt.", 10, 10)
GUICtrlCreateLabel("For optimum performance, be playing RuneScape on low detail.", 10, 30)
GUICtrlCreateLabel("To begin, click 'start mining'.", 10, 50)
$okbutton = GUICtrlCreateButton("Start Mining", 50, 200, 70, 20)
$cancelbutton = GUICtrlCreateButton("Done", 180, 200, 70, 20)

GUISetState()
Global $element, $fe = "0x4D2F23", $sn = "0x8A8180", $cu = 0x916843
Global $mined = 0, $varMin = 0, $loads = 0, $random_event = 0

$coord = PixelSearch(0, 0, 1024, 1280, $element, 0)
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $okbutton
            $mine = InputBox("How many loads?", "How many loads would you like to mine? (Numbers only please)")
            $type = InputBox("What type?", "What type of ore would you like to mine? Please enter only the first letter.  (Iron, Copper and Tin are supported)")

            If $type = "i" Then Global $element = $fe, $DropType = "Irondrop"
            If $type = "t" Then Global $element = $sn, $DropType = "TinDrop"
            If $type = "c" Then Global $element = $cu, $DropType = "CopperDrop"
            _MineElement()
        Case $msg = $cancelbutton
            Exit
        Case $msg = $GUI_EVENT_CLOSE
            Exit
    EndSelect
WEnd

Func _MineElement()
    Do
        $sleep = Random(90, 150)
        $minewait = Random(3000, 4200)
        $coord = PixelSearch(0, 0, 1024, 1280, $element, 0)
        If Not @error Then
            Sleep(2000)
            MouseMove($coord[0], $coord[1])
            MouseDown("left")
            Sleep($sleep)
            MouseUp("left")
            Sleep($minewait)
            $mined += 1
            $varMin += 1
            $random_event += 1
        Else
            $mined = $mined
        EndIf
        If $varMin = 28 Then
            $droped = 0
            Do
                Call($DropType)
                $droped += 1
                $loads += 1
            Until $droped = 28
            $varMin = 0
        EndIf
        If $random_event = 3 Then
            RandomEvent ()
            $random_event = 0
        EndIf
    Until $mine = $loads
    Finished ()
EndFunc   ;==>_MineElement

Edit: Added a missing piece of the code, opps! Also since you're playing with GUICreate, it would make more sense to have one GUI that collected the number of loads and the ore to mine instead of using the InputBox() function. This would give your script a much cleaner look and feel. fwiw... later!

Edited by ssubirias3
Link to comment
Share on other sites

You script is calling external function that I'm guessing are tucked in Function_Library.au3. Since you didn't include those I'm going to guess that your problem is with your CooperDrop() and Irondrop() functions since you say "t" works. The only difference between your If...EndIf statements is your $coord = PixelSearch(0,0,1024,1280, .... ,0) and the CooperDrop(), Irondrop(), and TinDrop().

That said I took the liberty to clean up your script. Understand without the Function_Library.au3 file and being I'm not a gamer I'm not able to test this revised script. Hope you find the problem inside your other functions.

#cs ----------------------------------------------------------------------------
    
    AutoIt Version: 3.2.6.0
    Author: Matt
    
    Script Function:
    AutoMiner By Matt of RSFORUMS.ORG 
        Cleaned up by ssubirias3 of http://www.autoitscript.com/forum/index.php
    
#ce ----------------------------------------------------------------------------
#include <GUIConstants.au3>
#include <Function_Library.au3>

GUICreate("Rsforums.org's AutoMiner v1", 330, 280, -1, -1, $WS_SIZEBOX + $WS_SYSMENU)
GUISetBkColor(0xFFFFFF)
$n = GUICtrlCreatePic("C:\images\ores.gif", 100, 60, 103, 125)
GUICtrlCreateLabel("Rsforums.org's AutoMiner.  Made by Matt.", 10, 10)
GUICtrlCreateLabel("For optimum performance, be playing RuneScape on low detail.", 10, 30)
GUICtrlCreateLabel("To begin, click 'start mining'.", 10, 50)
$okbutton = GUICtrlCreateButton("Start Mining", 50, 200, 70, 20)
$cancelbutton = GUICtrlCreateButton("Done", 180, 200, 70, 20)

GUISetState()
Global $element, $fe = "0x4D2F23", $sn = "0x8A8180", $cu = 0x916843
Global $mined = 0, $varMin = 0, $loads = 0, $random_event = 0

$coord = PixelSearch(0, 0, 1024, 1280, $element, 0)
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $okbutton
            $mine = InputBox("How many loads?", "How many loads would you like to mine? (Numbers only please)")
            $type = InputBox("What type?", "What type of ore would you like to mine? Please enter only the first letter.  (Iron, Copper and Tin are supported)")

            If $type = "i" Then Global $element = $fe, $DropType = "Irondrop"
            If $type = "t" Then Global $element = $sn, $DropType = "TinDrop"
            If $type = "c" Then Global $element = $cu, $DropType = "CopperDrop"
            _MineElement()
        Case $msg = $cancelbutton
            Exit
        Case $msg = $GUI_EVENT_CLOSE
            Exit
    EndSelect
WEnd

Func _MineElement()
    Do
        $sleep = Random(90, 150)
        $minewait = Random(3000, 4200)
        $coord = PixelSearch(0, 0, 1024, 1280, $element, 0)
        If Not @error Then
            Sleep(2000)
            MouseMove($coord[0], $coord[1])
            MouseDown("left")
            Sleep($sleep)
            MouseUp("left")
            Sleep($minewait)
            $mined += 1
            $varMin += 1
            $random_event += 1
        Else
            $mined = $mined
        EndIf
        If $varMin = 28 Then
            $droped = 0
            Do
                Call($DropType)
                $droped += 1
                $loads += 1
            Until $droped = 28
            $varMin = 0
        EndIf
        If $random_event = 3 Then
            RandomEvent ()
            $random_event = 0
        EndIf
    Until $mine = $loads
    Finished ()
EndFunc   ;==>_MineElement

Edit: Added a missing piece of the code, opps! Also since you're playing with GUICreate, it would make more sense to have one GUI that collected the number of loads and the ore to mine instead of using the InputBox() function. This would give your script a much cleaner look and feel. fwiw... later!

Well, thank you a lot for your help. Unfortunately the script is still freezing (working with tin though still...). I think I do need to lessen the size of the area it is searching in. Also, I would like to have two separate GUI's, I'll have to look into how to do that though, not really sure how to switch control over to another one :)

That code you gave is a lot nicer, I really appreciate it! Sad that it still doesn't work though :)

Coder's Helper >> Here[center][/center]

Link to comment
Share on other sites

Don't know if it's possible in your situation, but you can try this:

Put Opt('TrayIconDebug', 1) at the top of your script, then make it freeze.

Now mouse over the tray icon for your script (in the system tray) and it should tell you what line it's hanging on. This might give you an idea of what the problem is?

*Edit: And like ssubirias3 said, if you could include Function_Library.au3 here we can analyze that as well and see if there's some subtle thing there making it freeze.

Edited by Saunders
Link to comment
Share on other sites

Well, thank you a lot for your help. Unfortunately the script is still freezing (working with tin though still...).

My brother, you missed the point I was making about the problem being with your OTHER functions we can't see. Here's what I said earlier more to the point. Saunders got what I was saying :)

You script is calling external function ... in Function_Library.au3. .... your problem is with your CooperDrop() and Irondrop() functions since ... "t" works. .... the problem [is] inside your other functions.

Give us the code to Function_Library.au3 and we'll fix your code, can't say it any simplier than that :)
Link to comment
Share on other sites

Sorry about that lol.

Here it is (And all of the include files listed)

#include-once
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.2.6.0
 Author: Matt

 Script Function:
    Function Library + AntiRandom Functions By Matt

#ce ----------------------------------------------------------------------------
#include <_MouseMove.au3>
#include <Iron_Drop.au3>
#include <Tin_Drop.au3>
#include <Copper_Drop.au3>
#include <Mining_Done.au3>
#include <StrangePlant.au3>
#include <explodingrocks.au3>
#include <Random_Events.au3>
#include <Report_Function.au3>oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%%ɽ¸É½Àչѥ½¸½¸Õ±°¥¹Ù¹Ñ½Éää5ÑÐ((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´)Õ¹%ɽ¹É½À ¤($ÀÌØí¥É½¹}ɽÀôA¥á±MÉ  À°À°ÄÀÈаÄÈàÀ°ÁààÀØàÐä°À¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%5½ÕÍ5½Ù ÀÌØí¥É½¹}ɽÁlÁt°ÀÌØí¥É½¹}ɽÁlÅt¤(%5½Õͽݸ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%M±À ÀÌØíͱÀ¤$(%5½ÕÍUÀ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%}5½ÕÍ5½Ù À°ÐФ(%5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%M±À ÀÌØíͱÀ¤(%5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%Q¥¸É½Àչѥ½¸½¸Õ±°¥¹Ù¹Ñ½Éää5ÑÐ((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´)Õ¹Q¥¹É½À ¤($ÀÌØíÑ¥¹}ɽÀôA¥á±MÉ  À°À°ÄÀÈаÄÈàÀ°ÁàÙØàØà°À¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%5½ÕÍ5½Ù ÀÌØíÑ¥¹}ɽÁlÁt°ÀÌØíÑ¥¹}ɽÁlÅt¤(%5½Õͽݸ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%M±À ÀÌØíͱÀ¤$(%5½ÕÍUÀ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%}5½ÕÍ5½Ù À°ÐФ(%5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%M±À ÀÌØíͱÀ¤(%5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%
½ÁÁÈɽÀչѥ½¸½¸Õ±°¥¹Ù¹Ñ½Éää5ÑÐ((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´)Õ¹
½ÁÁÉɽÀ ¤($ÀÌØí½ÁÁÉ}ɽÀôA¥á±MÉ  À°À°ÄÀÈаÄÈàÀ°ÁáÜÝÌÔ°À¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%5½ÕÍ5½Ù ÀÌØí½ÁÁÉ}ɽÁlÁt°ÀÌØí½ÁÁÉ}ɽÁlÅt¤(%5½Õͽݸ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%M±À ÀÌØíͱÀ¤$(%5½ÕÍUÀ ÅÕ½ÐíÉ¥¡ÐÅÕ½Ðì¤(%}5½ÕÍ5½Ù À°ÐФ(%5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%M±À ÀÌØíͱÀ¤(%5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%¥¹¥Í¡5¥¹¥¹Õ¹Ñ¥½¸((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´()Õ¹¥¹¥Í¡ ¤$(ÀÌØíÁÕÍôI¹½´ ÄäÀ°ÈÈÔ¤$)5½ÕÍ5½Ù ÔÀØ°ØÐФ)5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤)M±À ÀÌØíÁÕͤ)5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)5½ÕÍ5½Ù äÀÀ°ØàÀ¤$$$$$)5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤)M±À ÀÌØíÁÕͤ)5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)M±À ÀÌØíÁÕͤ)5½ÕÍ5½Ù ààÔ°ÔÜÀ¤$$$$$)5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤)M±À ÀÌØíÁÕͤ)5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤)M±À ÄÀÀÀ¤)5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤)5Í   ½à ÅÕ½Ðí¥¹¥Í¡ÅÕ½Ðì°ÅÕ½Ðí¥¹¥Í¡ÅÕ½Ðì°ÅÕ½Ðí5¥¹¥¹¡Ì¸½µÁ±ÑÌÌìÅÕ½Ðì¤)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%MÑɹA±¹Ð¹Ñ¤µI¹½´ØÄ((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´)Õ¹MÑɹA±¹Ð ¤($ÀÌØíÁ±¹ÐôA¥á±MÉ  À°À°ÄÀÈаÄÈàÀ°ÁàÑÌÄÙ°Ô¤(%%¹½ÐÉɽÈÑ¡¸($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%5½ÕÍ5½Ù ÀÌØíÁ±¹ÑlÁt°ÀÌØíÁ±¹ÑlÅt¤(%M±À ÔÀÀÀ¤(%5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤(%M±À ÀÌØíͱÀ¤$(%5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤(%¹¥)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%Mµ½­¥¹I½­Ì¹Ñ¤µI¹½´ØÄ((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´)Õ¹áÁ±½¥¹I½­Ì ¤($ÀÌØí͵½­ôA¥á±MÉ  À°À°ÄÀÈаÄÈàÀ°ÁàÑÌÄÙ°Ô¤(%%¹½ÐÉɽÈQ¡¸($ÀÌØíͱÀôI¹½´ äÀ°ÄÔÀ¤(%5½ÕÍ5½Ù ÀÌØí͵½­lÁt°ÀÌØí͵½­lÅt¤(%}5½ÕÍ5½Ù À°ÔÀ¤(%5½Õͽݸ ÅÕ½Ðí±ÐÅÕ½Ðì¤(%M±À ÀÌØíͱÀ¤$(%5½ÕÍUÀ ÅÕ½Ðí±ÐÅÕ½Ðì¤(%M±À ÄÀÀÀÀ¤(%¹¥)¹Õ¹oÝ÷ Ù«­¢+ØÌ´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´((Õѽ%ÐYÉÍ¥½¸è̸ȸظÀ(ÕÑ¡½Èè5ÑÐ((MÉ¥ÁÐչѥ½¸è(%I¹½´Ù¹Ð
¡¬´
¡¬½ÈÙÉ¥Ñä½É¹½´Ù¹ÑÌ°¹¥Ñ¡äá¥Íа°Ý¥Ñ Ñ¡´¸((´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´()Õ¹I¹½µÙ¹Ð ¤(%MÑɹA±¹Ð ¤(%áÁ±½¥¹I½­Ì ¤(%¹Õ¹oÝ÷ Ù«­¢+ÙÕ¹IÁ½ÉÐ ¤(ÀÌØí¥±ô¥±=Á¸¡Í­Ñ½Á¥ÈµÀìÅÕ½ÐìÀäÈíÕѽ5¥¹ÈIÁ½ÉйÑáÐÅÕ½Ðì°Ä¤)¥±]É¥Ñ ÀÌØí¥±°ÅÕ½Ðíe½Ôµ¥¹ÅÕ½Ðì¤)¥±]É¥Ñ ÀÌØí¥±°ÀÌØí±½Ì¤)¥±]É¥Ñ ÀÌØí¥±°ÅÕ½Ðì½É̽ÅÕ½Ðì¤)%ÀÌØíÑåÁôÅÕ½Ðí¤ÅÕ½ÐìQ¡¸(%¥±]É¥Ñ ÀÌØí¥±°ÅÕ½Ðí¥É½¸ÅÕ½Ðì¤(%±Í¥ÀÌØíÑåÁôÅÕ½ÐíÐÅÕ½ÐìQ¡¸(%¥±]É¥Ñ ÀÌØí¥±°ÅÕ½ÐíÑ¥¸ÅÕ½Ðì¤(%±Í¥ÀÌØíÑåÁôÅÕ½ÐíÅÕ½ÐìQ¡¸(%¥±]É¥Ñ ÀÌØí¥±°ÅÕ½Ðí½ÁÁÈÅÕ½Ðì¤$(%¹%)¥±]É¥Ñ ÀÌØí¥±°ÅÕ½ÐíÍÕÍÍÕ±±äÌÌìÅÕ½ÐìµÀì
I1¤)¥±]É¥Ñ ÀÌØí¥±°ÅÕ½ÐíQ¡¹­Ì½ÈÕÍ¥¹ÉͽÉյ̹½ÉÌäíÌÕѽµ¥¹È¸ÅÕ½Ðì¤)¥±
±½Í ÀÌØí¥±¤)¹Õ¹

Coder's Helper >> Here[center][/center]

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...