黃易群俠傳M脫機外掛應用程式黃易神行
12267
7

[分享] iMax Macro v4.8 (binary + source code)

maxwgun 發表於 2009-2-17 10:35:51 | 只看該作者 回帖獎勵 |倒序瀏覽 |

name: iMax Macro v4.8
purpose: (ps/2)keyboard & mouse macro,
support read memory from some application.

很多的人的 BOT 沒辦法抓到血條, 有了這個功能後,
大家都可以讀出 HP/MP , 就可以再來判斷何時要不要補.

軟體簡介:類似按鍵精靈的程式.


usage:
1. download archive, extract archive to a folder.  
2. (if you want o use readmemory/ writeMemory command, else skip this step.)
copy files in binary to MLE folder.
3. (if you want o use readmemory/ writeMemory command, else skip this step.)
execute MLE,
(ps 1: if MLE make you reboot after enter maplestory,
you just need to open ML Engine, open Maplesotry, than close ML Engine.)
3. (if you want o use keypress/ keydown/ keyup command, else skip this step.)
Double click on maxSysInstall.exe to install virtual keyboard driver, let it do what it needs to.
4. A window should pop up a bit after, asking for a number
5. Put in 0, and a window should pop up saying that Windows XP is detected, the number should be blahblah. Accept this, and then close off any remaining windows.
6. execute iMaxMacro48.exe.
7. execute Maplestory,


update history:
v4.8
bug fixed, when use 3 level if command (nesty if).
ex:
  1. dim a
  2. a=10
  3. if a < 0 then
  4.   debug.print "1"
  5. else
  6.   if a < 5 then
  7.     debug.print "2"
  8.   else
  9.     if a < 8 then
  10.       debug.print "3"
  11.     else
  12.       debug.print "4"
  13.     end if
  14.   end if
  15. end if
複製代碼
this script will output "4".

v4.7
bug fixed, use RPM function in iLvMoney.dll instead of max20081103.dll

v4.6
1. support SetActiveWindow: Set active Window by title. ex:
  1. SetActiveWindow myVar
複製代碼
v4.5
1. support command GetPixelR (or GetColorR): get Red color from screen via gdi32.dll.
  ex:
  1. GetPixelR 100, 100, myColorR
複製代碼
2. support command GetPixelG (or GetColorG): get Green color from screen via gdi32.dll.
  ex:
  1. GetPixelG 100, 100, myColorG
複製代碼
3. support command GetPixelB (or GetColorB): get Blue color from screen via gdi32.dll.
  ex:
  1. GetPixelB 100, 100, myColorB
複製代碼
4. support command GetActiveWindowTitle: Get active Window title.
  ex:
  1. dim myVar
  2. GetActiveWindowTitle myVar
複製代碼
5. support command SetActiveWindowTitle: Set active Window title.
  ex:
  1. SetActiveWindowTitle "Test"
複製代碼
6. command with comment, ex:
  1. dim myColorR
  2. GetPixelR 100, 100, myColorR // get red color
複製代碼
v4.4
1. remove RichTextBox.

v4.3
1. bug fixed, when open watch windows & press hotkey in game.
2. bug fixed, when replace color in richtextbox.

v4.2
1. bug fixed. (pageUp & pageDown key not work).
2. support GetFileNameFromWindow command, ex:
  1. dim appFileName
  2. GetFileNameFromWindow "maplestory",appFileName
  3. killapp appFileName
複製代碼
3. support CloseActiveWindow command, ex:
  1. CloseActiveWindow
複製代碼
4. support killFile (or DELETEFILE) command to delete file.
  ex:
  1. killfile "d:\test1.txt"
複製代碼
5. support CopyFile to copy file.
  ex:
  1. copyfile "d:\test1.txt","d:\test2.txt"
複製代碼
6. support SaveFile to save data to file.
  ex:
  1. savefile "d:\test1.txt",myVar
複製代碼
7. support LoadFile to (or OpenFile): load data from file.
  ex:
  1. loadfile "d:\test1.txt",myVar
複製代碼
v4.1
1. bug fixed.(becuase v4.0 support "default appName" cuase some bug)
2. support color syntax editor.
3. support setting auto turn off numlock in iMaxMacro41.ini


v4.0
1. support HotKey to run script.
2. support default appName, so you could ignore application title when you are using click,sendkey,closeApp command.
3. support save hotkey & default appName setting to ini file.
4. add a options button in toolbar.

v3.9
1. use rich textbox instead of textbox.

v3.8,
1. support GetRegSTRING , SetRegSTRING, GetRegDWORD , SetRegDWORD command to read/write Reg.
ex:
  1. dim MaplestoryPath
  2. dim regRoot,regPath,regKey
  3. regRoot="HKEY_LOCAL_MACHINE"
  4. regPath="SOFTWARE\Wizet\MapleStory"
  5. regKey="ExecPath"
  6. GETREGSTRING regRoot,regPath,regKey,MaplestoryPath
  7. shell MaplestoryPath + "\maplestory.exe"
  8. delay 1000
  9. closeApp "maplestory"
複製代碼
2. support PlaySound command,
ex:
  1. playsound "SystemStart"
複製代碼
soundName could be: {"SystemStart",".DEFAULT","SystemStart","SystemExit","SystemHand","SystemQuestion","SystemExclamation","SystemAsterisk","Open","Close","Maximize","Minimize","RestoreDown","RestoreUp","AppGPFault","MenuCommand","MenuPopup","MailBeep"}

3. support KillApp command.
ex:
  1. killapp "maplestory.exe"
複製代碼
4. support shellWait command.
ex:
  1. shellwait "notepad.exe"
複製代碼
5. support shellExecute command.
ex:
  1. shellexecute "C:\WINDOWS\Media\Ringout.wav"

  2. shellexecute "http://forum.●綜合木馬外掛網站●.org/viewforum.php?f=21"
複製代碼
v3.7,
1. bug fixed. (F1~f12 key not work).
2. auto turn off Num Lock light, when macro contains("keypress","keydown","keyup")

v3.6
1. bug fixed (alt key not work).
2. add a form to list usual keys.
3. auto load autoload.txt from appliation path.
4. support nest for loop command.
ex:
  1. dim i,j
  2. for i = 1 to 5
  3.   for j = i to 5
  4.     debug.print cstr(i) + "-" + cstr(j)
  5.   next
  6. next
複製代碼
5. support application title as a variable, ex:
  1. dim myTargetApp
  2. dim myAttackKey
  3. myTargetApp = "maplestory"
  4. myAttackKey = "C"
  5. do
  6.   sendkey myTargetApp, myAttackKey
  7.   delay 1000
  8.   click myTargetApp
  9.   delay 1000
  10. loop
複製代碼
v3.5
1. support nest if command.

v3.4
1. add toolbar.
2. adjust object position when application resize.
3. support clickR, dbClickR, clickM, dbClickM for mouse right & middle click.

v3.3
1. support readkey to get what key is pressing.
ex:
  1. dim key1
  2. dim currentKey

  3. sub main
  4.     key1=asc(ucase("a"))
  5.     while true
  6.         readKey currentKey
  7.         if currentKey = key1 then
  8.             msgbox "you press:" + cstr(chr(key1)) + "."
  9.             exit while
  10.         end if
  11.         delay 100
  12.     wend
  13. end sub
複製代碼
v3.2
1. bug fixed about (for, while, do command)
2. support shell command,
ex:
  1. shell "C:\Program Files\Gamania\MapleStory\MapleStory.exe"
複製代碼
3. support closeApp command,
ex:
  1. closeApp "maplestory"
複製代碼
4. support logoff,reboot and shutdown, command,
ex:
  1. logoff
複製代碼
5. support readMemoryWin32 & writeMemoryWin32 command,
ex:
  1. readmemoryWin32 "maplestory", 0x00400600, myVar
複製代碼
6. enhance hex compute performence.


v3.1
1. bug fixed.
2. enhance help message.

v3.0
1. support getMouseXY command.
ex:
  1. // purpose: get current cursor x,y & the color at x,y.
  2. dim cursorX,cursorY
  3. dim myColor
  4. sub main
  5.     delay 8000
  6.     getMouseXY cursorX,cursorY
  7.     getpixel cursorX,cursorY,myColor
  8.     debug.print cursorX
  9.     debug.print cursorY
  10.     debug.print myColor
  11.     msgbox "get mouse x,y(" + cstr(cursorX) + "," + cstr(cursorY) + ") color is: " + cstr(mycolor) + "."
  12. end sub
複製代碼
v2.9
1. support clipboard.settext & clipboard.gettext command.

v2.8:
1. bypass nProtect GG rev 1236.
2. PS: ReadMemory & WriteMemory command is not work unless MLE is undetected.

v2.7:
1. support moveTo command to move mouse (x,y).

v2.6:
1. support, getPixel (or getColor) command.
2. support debug (or dbgprint) command to output date to debug print window.
3. support, "debug" function to watch debug print message.
4. change priority to real, to get Pixel correctly.

v2.5:
1. support, "watch" function to watch varible value.
2. display current line number & current line command.
3. support assign hex value to varible, ex: a=0x60.


v2.4:
1. support, "while" ... "wend" command, and "exit while"
2. support, "do" ... "loop" command, and "exit do"
3. support, "for" ... "next" command, and "exit for"
4. support, "break" command.
5. support, one level "if... else ... end if" command.
6. support, "sendkey" command (use postMessage).
7. support, "click" command (use postMessage).
8. support, "keypress", "keydown", "keyup" command (use winIO).
9. support, "rpm" or "readmemory" command read memory (use iLvMoney.dll).
10. support, "wpm" or "writememory" command write memory (use iLvMoney.dll).


v2.2:
1. support textbox save/load function. (存檔/載入).
2. support macro. (由只處理單行, 變成可以處理多行 macro)

v2.1:
1. support "formula"(運算式).

download: iMax Macro v4.8 (binary)
http://rapidshare.de/files/45314689/iMaxRpmv4.8.zip.html
or
http://www.badongo.com/file/13400863

download: iMax Macro v4.8 (source code)
http://rapidshare.de/files/45314 ... sourceCode.zip.html
or
http://www.badongo.com/file/13400844


download: iMax Macro v4.7 (binary , source code) + iMaxBot v2008.11.02
http://rapidshare.de/files/41246923/iMaxRpmv4.7.zip.html
or
http://www.badongo.com/file/12703897


download iMaxMacro v4.7 install version
http://rapidshare.de/files/41246927/Package_iMaxRpmv4.7.zip.html
or
http://www.badongo.com/file/12703896


download: iMax Macro v4.6 (binary , source code) + iMaxBot v2008.11.02
http://rapidshare.de/files/41232449/iMaxRpmv4.6.zip.html
or
http://www.badongo.com/file/12677813


download iMaxMacro v4.6 install version
http://rapidshare.de/files/41232452/Package_iMaxMacro46.zip.html
or
http://www.badongo.com/file/12677820




download: iMax Macro v4.5 (binary , source code) + iMaxBot v2008.11.02
http://rapidshare.de/files/41219510/iMaxRpmv4.5.zip.html
or
http://www.badongo.com/file/12650252


download: iMax Macro v4.4 (binary , source code) + iMaxBot v2008.11.02
http://rapidshare.com/files/173868658/iMaxRpmv4.4.zip.html
or
http://www.badongo.com/file/12510947

download iMaxMacro v4.4 install version
http://rapidshare.com/files/1738 ... MaxMacro44.zip.html
or
http://www.badongo.com/file/12510950



download: iMax Macro v4.3 (binary , source code) + iMaxBot v2008.11.02
http://rapidshare.de/files/41086594/iMaxRpmv4.3.zip.html
or
http://www.badongo.com/file/12401463


download: iMax Macro v4.2 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12363036
or
http://rapidshare.de/files/41072742/iMaxRpmv4.2.zip.html


download: iMax Macro v4.1 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12316579
or
http://rapidshare.de/files/41043616/iMaxRpmv4.1.zip.html


download iMaxMacro v4.1 install version
http://www.badongo.com/file/12307737
or
http://www.xun6.com/file/d3fa2e5f7/Package_iMaxMacro41.zip.html


download iMaxMacro v4.0 install version
http://www.xun6.com/file/ed3fc6ab7/Package_iMaxMacro40.zip.html
or
http://www.badongo.com/file/12250637


download: iMax Macro v4.0 (binary , source code) + iMaxBot v2008.11.02
http://www.xun6.com/file/c2f964627/iMaxRpmv4.0.zip.html
or
http://www.badongo.com/file/12247100


download iMaxMacro v3.9 install version
http://www.xun6.com/file/0571a5687/Package_iMaxMacro39.zip.html
or
http://www.badongo.com/file/12231585


download: iMax Macro v3.8 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12224898
or
http://www.xun6.com/file/c00baa9c7/iMaxRpmv3.8.rar.html


download: iMax Macro v3.7 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12212098
or
http://www.xun6.com/file/3f7a00227/iMaxRpmv3.7.rar.html


download: iMax Macro v3.6 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12196337
or
http://www.xun6.com/file/12b7566b7/iMaxRpmv3.6.rar.html

download: iMax Macro v3.5 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12161045

download: iMax Macro v3.5 (install version) + iMaxBot v2008.11.02
http://www.badongo.com/file/12161110

download: iMax Macro v3.4 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12156727


download: iMax Macro v3.3 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/cfile/12133445

download: iMax Macro v3.2 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12096970

download: iMax Macro v3.1 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12041877

download: iMax Macro v3.0 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/12029853

download: iMax Macro v2.9 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/11947191

download: iMax Macro v2.8 (binary , source code) + iMaxBot v2008.11.02
http://www.badongo.com/file/11937265

download: iMax Macro v2.7 (binary , install version)
http://www.badongo.com/file/11901306

download: iMax Macro v2.6 (binary + source code)
http://www.badongo.com/file/11896012

download: iMaxRPM v2.5 (binary + source code)
http://www.badongo.com/file/11887144

download: iMaxRPM v2.4 (binary + source code)
http://www.badongo.com/file/11848480

download: iMaxRPM v2.2 (binary + source code)
http://www.badongo.com/●綜合木馬外掛網站●/11798642

download: iMaxRpm v2.1 (binary + source code)
1. http://www.badongo.com/file/11775581
2. http://xun6.com/file/b665789e7/iMaxRPMv21.rar.html

Runtime screen:
v3.4



v2.6



commands could be used in formula (VBScript):
Abs (numerical)
Array (comma-separated array elements)
Asc (string)
CBool (expression)
CDate (the date of expression)
CDbl (expression)
Chr (ANSI code)
CInt (expression)
CLng (expression)
CSng (expression)
CStr (expression)
Date ()
DateAdd (I, N, D)
DateDiff (I, D1, D2 [, FW [, FY]])
DatePart (I, D, [, FW [, FY]])
Dateserial (year, month, day)
DateValue (the date of string or expression)
Day (the date of string or expression)
Fix (expression)
Hex (expression)
Hour (time or string expression)
InStr ([start,] string1, string2 [, compare])
InstrRev ([start,] string1, string2 [, compare])
Int (expression)
IsArray (variables)
IsDate (or the date of the string expression)
IsEmpty (variables)
IsNull (variables)
IsNumeric (expression)
LCase (string expression)
Left (string expression, length)
Len (string expression of variables 〡)
LTrim (a string expression)
Mid (string expression, start [, length])
Minute (the date of string or expression)
Month (date of string or expression)
MonthName (month [, abbreviate])
Now ()
Oct ()
Replace (string expression, find, replacewith [, start [, count [, compare]]])
Right (string expression, length)
Rnd [(number)]
Round (numerical expression [, D])
RTrim (string expression)
Second (time or string expression)
Space (the number of repeat)
String (the number of repeat, repeat until the word)
StrReverse (String (10,71))
Time ()
TimeSerial (hour, minute, second)
TimeValue (the date of string or expression)
Trim (string expression)
UCase ()
VarType (variables)
Weekday (Date of expression, [FW])
WeekDayName (W, A, FW)
Year ()  



◆◆ Q&A ◆◆
Q:iMax Macro是否一定要跟MLE一起使用?

A:如要在楓之谷使用ReadMemory及WriteMemory這兩指令才須配合MLE,
       其它指令不需用到MLE的動態連結庫。且MLE只需開啟過一次就可以,
       雙核心電腦如因MLE會重開機者,就開過一次MLE就可先把MLE關閉,
       iMax Macro仍可正常執行。

Q: Component 'comdlg32.ocx' or one of it's dependencies not correctly registered: a file is missing or invalid. What am I doing wrong?

A: Install this:
Service Pack 6 for Visual Basic 6.0: Run-Time Redistribution Pack (vbrun60sp6.exe)
http://www.microsoft.com/downloa ... 7-9117-f673077ffb3c
and
copy comdlg32.ocx to c:\windows\system32\
(comdlg32.ocx file in the zip file, \ocx\comdlg32.ocx)
or
use installer version.


Component 'tabctl32.ocx' or one of its dependencies not correctly registered: a file is missing or invalid

Component 'mscomctl.ocx' or one of its dependencies not correctly registered: a file is missing or invalid

A: copy files in ocx.zip to c:\windows\system32
http://forum.●綜合木馬外掛網站●.org/download.php?id=45259
or
use install version.


Q: Component 'RICHTX32.OCX' or one of its dependencies not correctly registered: a file is missing or invalid.

A: use install version.


Q: Does it matter if I just run the program directly from the .zip?

It will cuase error, you need to extract binary folder to run iMaxMacro application. Before you first time run this application, you need to install my keyboard driver to your windows, please execute maxSysInstall.exe, than Run iMaxMacro.

Q: does it have to be in the MLE folder?

no, but if you want to use "readMemory" or "writeMemory" command, you need to put iMaxMacro to the MLE folder.



[quote="azualis"]Q: its doesn't moving right .[/quote]
A: maybe the reason is :
  1. keyboard is USB not PS/2.
  2. operation system is windows Vista not windows XP.
(if your OS is vista, you could try to read this topic:
[Release] NPC Chat SWJQ scripts and "Right" fix
http://forum.●綜合木馬外掛網站●.org/viewtopic.php?t=319789 )


Q: can we use it to ore bot on MS while MS is minimized?

A:
sendkey and click command should work while MS is minimized.
keydown/keyup/keypress don't work while MS is minimized.


Q: How to stop Wend command on imax

A:
http://forum.●綜合木馬外掛網站●.org/viewtopic.php?t=326574

Q: how to fix the BSOD problem. i got BSOD after i get a message saying my maxdriver.dat is out of date. i press ok and got the BSOD. HELP!!

A: after iMaxMacro v4.4, I am tring to readmemory / writememory by myself driver. When the driver try to debug a process, it may cause your windows crash. Try to update those 3 files (max20081102.sys , maxdriver.dat , maxSysInstall.exe) to the iMaxMacro folder, than run "maxSysInstall.exe" again.

http://forum.●綜合木馬外掛網站●.org/download.php?id=53575
(description: install virtual keyboard driver without open window kernel.)




ps:
click command, click by (postMessage + 5), Don't need MLE. It's windows buildin function.

sendkey command, send keys by (postMessage + 5), Don't need MLE. It's windows buildin function.

sendkey can send direction key to maplestory, you could use sendkey to change your channle, but can't move your character up/down/left/right. If you want to move your character, you could try to use keydown/keyup/keypress command.

keypress / keydown / keyup command seems work when you are using a PS/2 keyboard. send keys by max20081102.dll & max20081102.sys you need install my keyboard driver.

readmemory / writememory command, read memory via iLvMoney.dll , you need copy my application to MLE folder.

readmemoryWin32 / writememoryWin32 command, read memory via kernel32.dll. It's windows buildin function.

my suggestion is don't use goto command.



credit to:
iLvMoney, kgame, darkbyte
收藏收藏 分享分享 讚 幹 分享分享 FB分享
Max. ^_^
回覆

使用道具 舉報


6i893i7496i795 當前離線
UID
1148757
熱心
10 值
嘉獎
0 次
違規
0 次
在線時間
0 小時
經驗
10 點
積分
10
精華
0
最後登錄
2009-3-7
閱讀權限
10
註冊時間
2009-3-7
論壇幣
20 幣
聯合幣
0 枚
幸運鑽
0 顆
招待卷
0 點
Yahoo!阿里旺旺查看個人網站 查看詳細資料
Rank: 1
6i893i7496i795 2009-3-7 19:27:16
這是什麼東西 看不懂耶 長篇大論的
00
回覆

使用道具 舉報

regret0423 當前離線
UID
1153607
熱心
16 值
嘉獎
0 次
違規
0 次
在線時間
0 小時
經驗
16 點
積分
16
精華
0
最後登錄
2009-3-14
閱讀權限
10
註冊時間
2009-3-14
論壇幣
8 幣
聯合幣
0 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 1
regret0423 2009-3-15 11:05:43
謝謝你的分享     謝謝
回覆

使用道具 舉報

Levls0315 當前離線
UID
932215
熱心
14 值
嘉獎
0 次
違規
0 次
在線時間
35 小時
經驗
14 點
積分
14
精華
0
最後登錄
2009-8-5
閱讀權限
10
註冊時間
2008-7-13
論壇幣
1 幣
聯合幣
0 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 1
Levls0315 2009-3-15 17:03:11
感謝分享,我來試試看能不能用 ~YCT53B
回覆

使用道具 舉報

x1060710607 當前離線
UID
1035807
熱心
37 值
嘉獎
0 次
違規
0 次
在線時間
7 小時
經驗
26 點
積分
83
精華
0
最後登錄
2018-8-6
閱讀權限
20
註冊時間
2008-9-27
論壇幣
4 幣
聯合幣
9 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 2Rank: 2
5
x1060710607 2009-3-15 19:25:49
謝謝大大的分享YCT44B
回覆

使用道具 舉報

abay1234 當前離線
UID
250035
熱心
49 值
嘉獎
0 次
違規
0 次
在線時間
55 小時
經驗
62 點
積分
62
精華
0
最後登錄
2014-6-1
閱讀權限
20
註冊時間
2007-2-27
論壇幣
0 幣
聯合幣
5 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 2Rank: 2
6
abay1234 2009-6-29 21:37:38
3Q...............................................
回覆

使用道具 舉報

月曆 當前離線
UID
1317714
熱心
105 值
嘉獎
0 次
違規
0 次
在線時間
37 小時
經驗
55 點
積分
55
精華
0
最後登錄
2010-10-31
閱讀權限
20
註冊時間
2009-9-25
論壇幣
-20 幣
聯合幣
1 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 2Rank: 2
7
月曆 2010-2-7 16:22:00
謝謝大大的分享
本文章轉自外掛聯合國http://www.wgun.net
炒 M ‵~~`
回覆

使用道具 舉報

iop366776 當前離線
UID
80111
熱心
132 值
嘉獎
0 次
違規
0 次
在線時間
32 小時
經驗
131 點
積分
131
精華
0
最後登錄
2012-12-15
閱讀權限
20
註冊時間
2006-11-13
論壇幣
111 幣
聯合幣
0 枚
幸運鑽
0 顆
招待卷
0 點
查看詳細資料
Rank: 2Rank: 2
8
iop366776 2010-2-8 00:56:01
你搞的我頭好痛 ............................................
回覆

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 註冊


手機版 | Archiver | 外掛聯合國

GMT+8, 2024-4-20 19:36 , Processed in 0.059341 second(s), 18 queries , Memcache On.

版權說明:
  本站不會製作、經銷、代理外掛程式。僅免費提供外掛程式下載前之掃毒及掃木馬等安全檢測驗證,協助會員遠離盜號危險程式。本站所有資料均來自網際網路收集整理,說明文字暨下載連結轉載自原程 式開發站。站上出現之公司名稱、遊戲名稱、程式等,商標及著作權,均歸各公司及程式原創所有,本站程式所有權歸外掛聯合國所有。本程式所有權歸外掛聯合國所有.......

回頂部
第二步?
第三步?