cheatengie6.4 cheat engine怎么用汉化

原帖:- IntroductionTired of Cheat Engine's generic trainer style?&&Want better ability to edit a trainer that you've already made?Want to make a trainer that uses more than just hotkeys and can read and write custom values for ease of use?Follow this tutorial and you should be spitting out fancy trainers at the end!- Setup / Software / DownloadsThis tutorial was written for Cheat Engine 6.4, though it should work on 6.3 or later(barring future UI changes).We will be using the freeware game Cave Story as the target.You can download it , the translation patch is linked right below the main download.This post has some attachments which include the table and resources we'll be working with.So make sure to scroll down and download those now.- Meet The Lua Script And Form InterfaceThe first thing you'll want to do once you have all the files set up is to attach CE to the game (Doukutsu.exe) and then loadthe table.&&You'll see the various addresses and scripts in the table, but we'll barely be touching those.&&Instead, click the&Table& menu at the top and click &Show Cheat Table Lua Script&. This will bring up a new window where all the coding goes.It's important to remember that you should not click the &Execute& button at the bottom of this form until you are ready toactually test the script/trainer's functionality.&&Changes are automatically saved into the table, so always click the X atthe upper-right to close this form when you want it out of your way.Now go to &Table& again and click &Create Form&.&&This will bring up three windows... the Form Designer, Object Inspector, andthe Trainer Form itself. However you can think of the three windows using the below labels as well if it makes more sense.This form will be the actual visible trainer that the users will see and interact with, and it will interact with the Luascript to actually do stuff. After you've created a form, it has a sub-menu for it added in the &Table& menu, so you can bringit back up or go edit it some more later.- Basic SetupThe first goal will be to give the Lua script some basic working code and then set the trainer form up with a working &About&button.&&To start, we'll copy-paste some basic code to the bottom of the Lua script window. &&&&&&Code:&&&&&&&&&&&&&&AboutText=[[Sample About Text Here]]form_show(UDF1)getAutoAttachList().add(&doukutsu.exe&)function CloseClick()&&closeCE()&&return caFreeendUDF1.OnClose = CloseClickaddresslist=getAddressList()&&&&The first line sets some text for our &about& box, feel free to replace it with what you want (linebreaks work too).The second line tells the script to show the form when the trainer runs.&&It uses the default name of &UDF1& for the mainform, if you rename the main form then make sure to change this line as well.The third line tells CE which process name you want the trainer to automatically attach to.&&If, for some reason there'smore than one process name (DX/GL or DX9/11 installs) then you can copy-paste that line to add more process names thetrainer should look for.The lines that involve closing tells the background processes and such to close when the user closes the trainer,so leave these alone.The final line loads the table's address list, for when we want to freeze values and such.Now you'll want to look at the Trainer form (those three boxes).&&In the Object Inspector box (where you edit the propertiesof things) click on the main form in the list at the top (UDF1, the default name for the trainer in general) and scroll downto see the properties. You can click in the property boxes to edit them.&&You'll want to change the Width and Height of thetrainer to 300 each, and also change the Caption, because that's what determines what the Trainer window is named.Now look at the Tool Box (Form Designer), click the second button and then click and drag in the trainer form somewhere tomake a simple button.Then select this button (either click it in the Form or click it's entry in the Properties / Object Inspector) and tweakit as well.&&Make it have &About& for a caption, and then change the Width, Height, Top and Left properties to resize and moveit.&&The Top and Left properties are the distance in pixels from the upper-left corner. For this tutorial, you're going to wantto position the button in the bottom-right, and remember to change &Caption& for the display text, not &name&!Once the button is positioned where you want and looks the way you want it to, it's time to make it do something.&& Make surethe button is selected and then go to the &events& tab and check out the &OnClick& entry.&&It will have both a dropdown box anda &...& button. The dropdown box will list various functions to be run when the button is clicked... but we don't have afunction for it yet, so clicking the &...& button will open the Lua form and insert a function for it at the bottom.So when the user clicks the button, it will call this function.&&The function is just one blank line right now, so you'llwant to copy-paste &showMessage(AboutText)& into it, which is the function it should call.&&This is a function that shows amessage box containing the AboutText that was part of the first stuff we put into the script.So overall the Lua script should look something like this right now. &&&&&&Code:&&&&&&&&&&&&&&AboutText=[[Sample About Text Here]]form_show(UDF1)getAutoAttachList().add(&doukutsu.exe&)function CloseClick()&&closeCE()&&return caFreeendUDF1.OnClose = CloseClickaddresslist=getAddressList()function CEButton1Click(sender)&&showMessage(AboutText)end&&&&The next thing we'll be doing is adding a sidebar image.&&Click the picture button in the Form Designer and then click inthe Trainer form to insert the image.Then with the image selected in the Object Inspector, go to the &Picture& attribute, click the &...& button, then browse toand select the sidebar image I attached to this post.Make sure to change the image object's size and location to 100x300 (the size of the included sidebar image) and position iton the left (top 0 and left 0 will make it fit exactly on the lefthand side).When you're done resizing it and such, it's time to test it.&&Close the Form windows and leave just the main CE window and Luaform open. Then in the Lua form, click the &Execute& button at the bottom.&&This should open the trainer and you should be ableto click the &About& button and have it show the info.If so, move onto the next section.&&If not, make sure you didn't typo or accidentally misname something.- Checkbox & Button TogglesWell it's about time to actually add some cheat scripts and make the trainer do something useful, isn't it?&&The first thingwe're going to add is a checkbox that will toggle an address freeze.&&In The Form Designer click the checkbox tool and thenclick in the Trainer Form to add the checkbox.&&Give it a nice Caption (not &name&) and position it the way you want.After that, just like we did for the About button, we're going to add a function to the &OnChange& event.This time, we're going to need to make the script a little more involved.&&When the user clicks the checkbox, we want thescript to determine the new state (checked or unchecked) and act based on that.&&So we'll use this, sticking it inside theblank function that CE inserted for us. &&&&&&Code:&&&&&&&&&&&&&&&&if (checkbox_getState(UDF1.CECheckBox1) == 1) then&&else&&end&&&&&&Note the phrase &UDF1.CECheckbox1&.&&This is made up of two parts.&&The &UDF1& part is the name of the trainer form, while&CECheckbox1& is the name of the checkbox we added.&&If you've renamed anything or when you go to add more things, be surethat the names match.So now that the function checks the status of the checkbox and does two separate things based on that, let's actually tell itto freeze or unfreeze the first address in the cheat table (which is index 0). &&&&&&Code:&&&&&&&&&&&&&&&&if (checkbox_getState(UDF1.CECheckbox1) == 1) then&&&&CheatEntry=addresslist_getMemoryRecordByID(addresslist,0)&&&&memoryrecord_freeze(CheatEntry)&&else&&&&CheatEntry=addresslist_getMemoryRecordByID(addresslist,0)&&&&memoryrecord_unfreeze(CheatEntry)&&end&&&&&&So the entire function should look like this.And it's time to test it!&&Close the Trainer Form and related boxes, then click &Execute& on the Lua Script window, ifeverything went well you should see the trainer, and checking the box should have the desired effect.But simply freezing values isn't enough in a lot of cases.&&Cave Story in particular starts you out with 3 HP, but thestarting area has spikes that do more than 3 damage, so they'll still kill you.&&In this case, we want to take the&No HP Loss& script from the table and use that.This time we'll make a toggle box (button) for the script.&&Find the &Togglebox& icon on the Form Designer toolbarand then click and drag in the Trainer Form to create a toggle box.&&Resize and position and name it the way you want.After this, just like before you want to go to the Events tab, and click &...& on the OnChange event to add thefunction like you've done twice now.&&Go ahead and add the &if / else /end& code from before too since we're workingwith a toggleable object, and make sure to rename the object being checked.&&If you did it right, it'll be this. &&&&&&Code:&&&&&&&&&&&&&&function CEToggleBox1Change(sender)&&if (checkbox_getState(UDF1.CEToggleBox1) == 1) then&&else&&endend&&&&Now, in those two blank spaces we want to run our script for &No HP Loss&.&&For this we want to use the autoAssemble()function which will let us run AA scripts.&&We'll want to copy everything in the [ENABLE] section of the &No HP Loss&script into the first blank section, and everything under [DISABLE] into the second blank section, like below.(Note that the script has [[ at the start and ]] at the end, this is used to denote multi-line scripts.) &&&&&&Code:&&&&&&&&&&&&&&function CEToggleBox1Change(sender)&&if (checkbox_getState(UDF1.CEToggleBox1) == 1) then&&&&autoAssemble([[&&&&&&alloc(newmem,2048) //2kb should be enough&&&&&&label(returnhere)&&&&&&label(originalcode)&&&&&&label(exit)&&&&&&newmem:&&&&&&originalcode:&&&&&&exit:&&&&&&jmp returnhere&&&&&&&Doukutsu.exe&+1997A:&&&&&&jmp newmem&&&&&&nop&&&&&&nop&&&&&&returnhere:&&&&]])&&else&&&&autoAssemble([[&&&&&&dealloc(newmem)&&&&&&&Doukutsu.exe&+1997A:&&&&&&mov [Doukutsu.exe+9E6CC],cx&&&&]])&&endend&&&&Quite a bit to put in, eh?&&But once you have this, you can just copy-paste it for each code you want and then replacethe script with the one from the table (I just strip comments and empty lines when doing this for visual clarity).Anyways like before, once you have this in there, close the Trainer Form and related windows, then click the &Execute&button at the bottom of the Lua window to run your trainer script and make sure stuff works out.- Read & Write FormsLet's say that we want to add some basic teleport functions to the trainer.&&We have&&addresses for the X and Ycoordinates in the table, and we want to let the user edit those values in the trainer for controlled teleportation.In order to do this, we'll need two Edit boxes and two normal buttons.&&Add them, and this time we actually do wantto change the Names, not just the Captions.&&I'll name the boxes CEEditX and CEEditY, and the buttons will beCEButtonRead and CEButtonWrite so that we don't get confused.&&You'll want to clear their &Text& properties as wellso you don't have the placeholder text that I left in the screenshot there...Now in order to make this setup functional, we'll first add a script to the OnClick Event of the &Read& button we made. &&&&&&Code:&&&&&&&&&&&&&&function CEButtonReadClick(sender)&&setProperty(UDF1.CEEditX,&Text&, readInteger(&Doukutsu.exe+9E654&))&&setProperty(UDF1.CEEditY,&Text&, readInteger(&Doukutsu.exe+9E658&))end&&&&The setProperty() function changes the Trainer Form, editing a property of one of the objects.&&In this case we'retargeting (by Name) the X and Y edit boxes we made.&&We're editing their Text properties (their contents) and for thevalue to put in there we're using the readInteger() function to pull the coordinates in from the addresses (in the table).Now we want to make the Write button do something too, so as usual select it and give it an OnClick event, use this code.It's basically the last stuff but in reverse, we give it an address and then a value to write to, reading from the form. &&&&&&Code:&&&&&&&&&&&&&&function CEButtonWriteClick(sender)&&writeInteger(&Doukutsu.exe+9E654&, getProperty(UDF1.CEEditX,&Text&))&&writeInteger(&Doukutsu.exe+9E658&, getProperty(UDF1.CEEditY,&Text&))end&&&&If everything went as planned, you should be able to Execute the script and get the controlled teleportation!- Saving / DistributingNow that you have a (relatively-)fancy trainer, it's time to share it with the world, right?&&Go to File -& Save Asand choose to save the table as a standalone trainer (.exe).&&I highly suggest renaming the trainer (even justappending &_trainer& to the name), you don't want it to have the same name as the process you're targeting,despite the default name in CE tending to be just that.After you've selected the location and file name to save as, you get the final step of making the trainer.&&This iswhere you can choose an icon file (32x32 or 48x48 .ico format, I unfortunately can't attach the one I used) and somefinal technical details.&&In general the options are either self-explanatory or CE will choose the right default foryour trainer, the only suggestion I have is to set the compression to &None& because AVs tend to complain about it.Once you click the &Generate& button, you're done!&&There's your fancy-pants trainer, have fun with it.If you need some software to make an image into a, .ico file, .
只介绍了常规控件的基本用法,lua其实功能挺多的当前位置: >
> ce修改器(Cheat Engine) ce 6.6 中文汉化版 免设置简体中文版(附使用方法)
ce修改器(Cheat Engine) ce 6.6 中文汉化版 免设置简体中文版(附使用方法)
软件大小:10.7MB
软件语言:简体中文
软件类型:
软件授权:免费软件
更新时间:
软件类别:内存管理
软件官网:
应用平台:
网友评分:
软件介绍人气软件下载地址相关文章
CE修改器6.1中文汉化版下载是一款专门修改内存修改编辑的游戏工具它包括16进制编辑,反汇编程序,内存查找工具MemTest 是少见的内存检测工具,它不但可以彻底的检测出内存的稳定度,还可同时测试记忆的储存与检索资料的能力,让你可以确实掌控到目前你机器上正在使用的内存到底可不可"内存救星"会把那些"不常用",但是"必须运行的程序"的内存使用量降到最低,这和传统的"内存整理"是完全不同的!您会有更多空闲内存来运行其它程序,速度会更快。
传统内DocMemory是一个可以电脑内存诊断程序,而且容易操作可以找出所有可能的内存问题。制作出一张可以开机的磁片。只要用这张磁片重新开机之后,就可以开始进行测试了。有各种Extra RAM 是一个为计算机初学者和专家设计的简单而又功能强大的程序, Extra RAM 是一个在后台运行并自动整理,优化内存,加速系统运行的工具;
兼容: Windows XP/Vista/Win一键清理内存(FLY Memory Cleaner)市面上大部分内存整理软件都是将物理内存强制转移到虚拟内存,以达到高效的“内存清理”的效果超级内存提取器是一个内存资源提取器,它可以从内存中把包括flash文件资源在内的图片、视频等资源提取出来,包括SWF、SWC、PNG和BMP等格式的资源计算机执行一段时间后,内存可用资源会变少,而内存管理工具 - RAM Saver Pro,能够随时自动调整计算机内存,让系统保有足够的内存可用空间,以藉此提升计算机的执行速度。金士顿sd卡量产工具:是松下出品的一款比较好用的SD卡格式化工具(可以处理SD卡或SDHC卡),可以修复一些SD卡的故障HeapMemView是一个允许你查看所有选定的进程储存区的软件,这个工具可以跟踪软件的内存漏洞,对软件开发作者很有用处。
ce修改器(Cheat Engine) ce 6.6 中文汉化版 免设置简体中文版(附使用方法)
CopyRight &
JB51.Net , All Rights Reserved游乐网-绿色游戏下载基地!
当前位置: > > 游戏修改工具CheatEngine6.4.0.4128
游戏修改工具CheatEngine6.4.0.4128 汉化版
游戏修改工具CheatEngine6.4.0.4128汉化版
不知道怎么下载,
游戏类型:
游戏大小:16 MB &nbsp&nbsp更新时间: 20:29:34
游戏语言:简体中文
操作系统:Windows all
游戏标签:
游戏专题:
扫一扫手机安装更快捷
使用手机二维码应用 扫描左侧二维码,您可以
1、在手机快捷下载
2、分享给你的微信好友或朋友圈
& &注:如果软件路径有中文,则显示英文
& &游戏修改工具CheatEngine6.4是一种修改内存的工具,具有强大的反汇编功能,且自身附带了外挂制作工具, 允许你修改你的游戏,在原来的基础上随意修改游戏,你是不是想到了什么,喜欢游戏的小伙伴们赶紧收藏吧。
使用说明:
1.解压缩;
2.安装程序;
3.修改游戏。
& &声明:本资源转载自互联网,如果侵犯到您的权益,请尽快联系我们,以便我们能及时处理。
游戏修改工具CheatEngine6.4.0.4128
温馨提示:此游戏文件大小(16 MB),下载时请耐心等
同类游戏排行
琴女在英雄联盟中可以说是非常凶悍的,但是阿
十月的到来预示着冬季即将开始,北方的气温已连接中,请稍候……}

我要回帖

更多关于 cheat engine 6.4汉化 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信