✔ 最佳答案
外掛只係好普通既編程,並唔係好似rpg整作大師、戀愛遊戲整作大師等程式,只禁幾下掣就可以整作到
你一定要有編程既概念,之後要學好複集既API叫用先可以。唔係你自己話想整就可以,我都係自學左三年先可以整到好簡單既滑鼠連按既小程式=.=比少少我整既你睇下
Sub SavePicture(ByVal Path As String)
If Not IO.Directory.Exists( Path) Then
IO.Directory.CreateD irectory(Path)
End If
Dim FileName As String = Microsoft.Win32.Regi stry.CurrentUser.Ope nSubKey("Softwa re\Majesty\Gulong Starter").GetVa lue("FileName&q uot;, "")
Dim a As Integer
While IO.File.Exists(Path & "\" & FileName & a & ".bmp")
a += 1
End While
memoryImage.Save(Pat h & "\" & FileName & a & ".bmp", Drawing.Imaging.Imag eFormat.Bmp)
End Sub
Sub StartAs(ByVal sender As Object, ByVal e As EventArgs)
System.Diagnostics.P rocess.Start("S tarter.exe")
End Sub