這是一段代碼,但它需要你選中三個選項框才能穩定運行,並且要取消選中所有三個選項框才能讓它停止穩定運行。它還需要單聲道功能。
如果你不熟悉我剛才說的話,請不要使用這段代碼。我不會提供任何故障排除或其他支持,我已經完成了我想要的並且已經放手了——我甚至不知道如何將這三個東西合併成一段代碼,能讓它運行已經是奇蹟了。
但如果你啟用了所有三個選項框,它會將工具的充電時間設置為0.1秒。如果你想的話,可以更改腳本來設置其他時間。這很麻煩,因為它似乎在三個地方設置了充電時間,並從兩個地方提取它,根據最高值(0.4或工具設置的時間)來決定使用哪個,我真的,真的不懂xmm寄存器,所以只能不斷嘗試直到成功。
如果有具備知識的人能夠將這段代碼合併成一條作弊代碼或其他東西,我非常希望能看到,因為我幾乎可以肯定我是通過純粹的試錯以最笨的方式完成的。
哦,還有一個由colonelrvh編寫的這個遊戲的作弊腳本表。它包含移動速度和一些這類遊戲的常見“基本”功能。
下載
版本1
Little-Known Galaxy - Extremely Rough Charge Time Codes.CT
(3.08 KB, 下載次數: 0)
版本2
- <?xml version="1.0" encoding="utf-8"?>
- <CheatTable>
- <CheatEntries>
- <CheatEntry>
- <ID>9687</ID>
- <Description>"PossibleQuickUpgrades"</Description>
- <VariableType>Auto Assembler Script</VariableType>
- <AssemblerScript>[ENABLE]
- //code from here to '[DISABLE]' will be used to enable the cheat
- alloc(newmem,2048,ScUpgradeSave:AdvanceConstruction+1a)
- label(returnhere)
- label(originalcode)
- label(exit)
- newmem: //this is allocated memory, you have read,write,execute access
- //place your code here
- originalcode:
- mov [rdi+24],0
- movsxd rax,dword ptr [rdi+24]
- exit:
- jmp returnhere
- ScUpgradeSave:AdvanceConstruction+1a:
- jmp newmem
- nop 2
- returnhere:
-
-
- [DISABLE]
- //code from here till the end of the code will be used to disable the cheat
- dealloc(newmem)
- ScUpgradeSave:AdvanceConstruction+1a:
- db 89 47 24 48 63 47 24
- //mov [rdi+24],eax
- //movsxd rax,dword ptr [rdi+24]
- </AssemblerScript>
- </CheatEntry>
- </CheatEntries>
- </CheatTable>
複製代碼
你可以將這三個腳本合併為一個。(代碼2,newmem2等)
然後,為了禁用,只需使用 dealloc(*) 和 unregistersymbol(*) 來通配所有符號和內存分配。
在 [ENABLE] 下面直接添加:
```asm- {$lua}
- mono_initialize()
- LaunchMonoDataCollector()
- {$asm}
複製代碼 ```
或者在一個單獨命名為“Enable”的腳本中添加這些代碼,並將你的腳本作為一組放在它下面。
```asm- [ENABLE]
- {$lua}
- mono_initialize()
- LaunchMonoDataCollector()
- {$asm}
- [DISABLE]
複製代碼 ```
版本3
這個可以讓你在撫摸動物(xeno)時獲得10倍的好感度,而不是默認的1好感度。最大好感度似乎是20到25左右?好感度似乎會讓你的xeno有機會在當天產生額外的物品,具體我沒有深入研究。- <?xml version="1.0" encoding="utf-8"?>
- <CheatTable>
- <CheatEntries>
- <CheatEntry>
- <ID>9689</ID>
- <Description>"Animal Affection x10"</Description>
- <LastState Activated="1"/>
- <VariableType>Auto Assembler Script</VariableType>
- <AssemblerScript>[ENABLE]
- {$lua}
- mono_initialize()
- LaunchMonoDataCollector()
- {$asm}
- //code from here to '[DISABLE]' will be used to enable the cheat
- alloc(newmem,2048,ScAnimalSave:GiveAffection+19)
- label(returnhere)
- label(originalcode)
- label(exit)
- newmem: //this is allocated memory, you have read,write,execute access
- //place your code here
- originalcode:
- mov edx,0000000A // Where it decides how much affection to give - default 00000001
- exit:
- jmp returnhere
- ScAnimalSave:GiveAffection+19:
- jmp newmem
- returnhere:
-
-
- [DISABLE]
- //code from here till the end of the code will be used to disable the cheat
- dealloc(newmem)
- ScAnimalSave:GiveAffection+19:
- db BA 01 00 00 00
- //mov edx,00000001
- </AssemblerScript>
- </CheatEntry>
- </CheatEntries>
- </CheatTable>
複製代碼 版本4 colonelrvh
所有站內附件皆會附上安全掃描報告 請會員查看純淨度百分比後判斷使用
相關檔案須知: 取得檔案前,請先詳細閱讀文章內容 避免不必要錯誤與誤會發生。 也可多參考文章討論樓層內容 了解附件檔案相關討論資訊。
使用演示製作的快速表可能適用於完整版本,也可能不適用於完整版本。
Little-Known Galaxy.CT
(17.09 KB, 下載次數: 0)
|