![]() |
[2.2]Programmable AI via scripting - Printable Version +- Little Fighter Empire - Forums (https://lf-empire.de/forum) +-- Forum: Little Fighter 2 Zone (https://lf-empire.de/forum/forumdisplay.php?fid=7) +--- Forum: AI Scripting (https://lf-empire.de/forum/forumdisplay.php?fid=56) +--- Thread: [2.2]Programmable AI via scripting (/showthread.php?tid=7927) |
RE: [2.2]Programmable AI via scripting - Silverthorn - 07-22-2012 Oh, I forgot that only "return 1" overwrites the original AI. Makes things a lot clearer, thanks! RE: [2.2]Programmable AI via scripting - totokwok - 07-27-2012 sorry, may I ask how to write the script so that the AI will do D>J when target is on his right and D<J when target is on his left? (no matter which direction they are facing) Thank you very much. RE: [2.2]Programmable AI via scripting - Boop - 07-27-2012 Hi, of course you may ![]() You can do it by reading the x variable of self and target. If target.x > self.x then you should do DrJ() else you should do DlJ() . In code form this looks like this: Code: if (target.x > self.x) If you were a perfectionist you could change to an else if ( target.x < self.x) and add another else to decide what to do if they are on the same x. The version I posted will do D<J if they are on the same x coordinate. RE: [2.2]Programmable AI via scripting - Som1Lse - 08-22-2012 Announcing version 3.0: Download: http://www.mediafire.com/?pxd026nqoqgw0 Change log (Click to View) RE: [2.2]Programmable AI via scripting - YinYin - 08-22-2012 working on a list for the data struct (08-22-2012, 02:11 PM)Someone else Wrote:so that's basically like loadTarget(i) except allowing multiple ones with any name we want? that will make my basic AI a lot easier to handle (08-22-2012, 02:11 PM)Someone else Wrote:could you mash up a quick example for this? edit: game.objects[self.num].data.frames[self.frame].opoint.oid this example does not work this one does: self.data.frames[self.frame].opoint.oid RE: [2.2]Programmable AI via scripting - Som1Lse - 08-22-2012 (08-22-2012, 02:42 PM)YinYin Wrote: edit: game.objects[self.num].data.frames[self.frame].opoint.oidFixed. Version 3.1 I guess. Download: http://www.mediafire.com/?pxd026nqoqgw0 RE: [2.2]Programmable AI via scripting - Som1Lse - 09-14-2012 Version 3.2:
RE: [2.2]Programmable AI via scripting - A-Man - 09-15-2012 Pretty much appreciated. Good job and Thanks ^^. Also, did you guys figure a way to make the armor work? Do u think its even possible? I really wanna help you with what you're doing, but i guess I need some more time to grasp what you've learnt before (these reverse engineering and hex stuff). Thanks again! RE: [2.2]Programmable AI via scripting - Electric2Shock - 09-24-2012 In this thread, you posted a method for patching the exe to load rarara.dll. But this dll seems to work without any patching in LF2.exe (v2.0a). I am interested in knowing how. Also, does this dll work on exes that have resource edits? RE: [2.2]Programmable AI via scripting - Silverthorn - 09-24-2012 (09-24-2012, 02:38 PM)Electric Shock Wrote: In this thread, you posted a method for patching the exe to load rarara.dll. But this dll seems to work without any patching in LF2.exe (v2.0a). I am interested in knowing how.LF2 requires ddraw.dll to display the graphics on-screen. At first, it'll search for the dll in the folder the exe is located in; if the dll is not there, it'll go to into the windows\system32\-folder. Basically, the patched ddraw.dll executes the AI-related stuff and then calls the original dll. This means that (09-24-2012, 02:38 PM)Electric Shock Wrote: Also, does this dll work on exes that have resource edits?Yes. I'm using it with an overly patched exe (resources + dll-framework + various hex-edits around the place) and it's working flawlessly ![]() |