![]() |
|
[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 - zort - 06-12-2013 I have here a patch that adds a previously unknown field in the sObject struct: Code: --- sgame.h 2013-06-12 13:18:41.033551073 -0400 EDIT: Changed name from delay_counter to wait_counter to reflect naming in data files :S RE: [2.2]Programmable AI via scripting - zort - 06-14-2013 Could you enable the math add-on (http://www.angelcode.com/angelscript/sdk/docs/manual/doc_addon_math.html)? Also, you know how for some reason you can't handle Frame (or Itr or whatever) thingies?: Code: Frame x = game.objects[self.num].data.frames[0]; Also: Code: enum State { RE: [2.2]Programmable AI via scripting - Som1Lse - 06-14-2013 (06-12-2013, 05:45 PM)zort Wrote: I have here a patch that adds a previously unknown field in the sObject struct:Currently there is not a preferred way to submit patches. Basically whatever works. It's the time before you go to the next frame? (06-14-2013, 07:21 PM)zort Wrote: Could you enable the math add-on (http://www.angelcode.com/angelscript/sdk/docs/manual/doc_addon_math.html)?Will do. (06-14-2013, 07:21 PM)zort Wrote: Also, you know how for some reason you can't handle Frame (or Itr or whatever) thingies?:You actually can but it is quite unintuitive the way it works. In the above code you are declaring a new Frame object and setting it equal to an existing one. First of all if you could do that it would be wasteful in resources as the data is already stored in memory somewhere else, and on top of that you aren't allowed to do so anyway because I haven't registered a factory function for the types anyway. The way to do it is by using handles (signified by using an @ symbol). Also since all of the API objects are declared as "const" you will have to use "const" as well. The following code loops through standing frames and displays their bodys:
(06-14-2013, 07:21 PM)zort Wrote: Also:Will add that as well. RE: [2.2]Programmable AI via scripting - zort - 06-15-2013 (06-14-2013, 10:39 PM)Someone else Wrote: It's the time before you go to the next frame?Each frame, it counts up from 0 until it hits the current frame's wait value, at which point the object goes to its next frame and wait_counter gets reset to 0. That's what it appears to do from observation. (06-14-2013, 10:39 PM)Someone else Wrote: The way to do it is by using handles (signified by using an @ symbol).Haha, I tried const and I tried @, but I guess I didn't try them both together. Awesome. RE: [2.2]Programmable AI via scripting - Som1Lse - 06-21-2013 Updated.
Download: http://www.mediafire.com/folder/pxd026nqoqgw0/LF2ddWrapper RE: [2.2]Programmable AI via scripting - tyt2y3 - 12-19-2013 We always want more features... Excuse me, but can you also enable the file add-on? I have some serious reason to output the states of ALL objects in the scene to a dump file and analyse it carefully, better than reading off the console window. I will appreciate so much for having this feature. Thank you. RE: [2.2]Programmable AI via scripting - YinYin - 04-24-2015 The wait_counter only returns 0 on both self and target objects for me (but unkwn3[7] seems to display the required behaviour). Also do we have a game time variable? RE: [2.2]Programmable AI via scripting - Som1Lse - 04-24-2015 (04-24-2015, 10:52 AM)YinYin Wrote: The wait_counter only returns 0 on both self and target objects for me (but unkwn3[7] seems to display the required behaviour).I'll try to fix this, but I don't have much time right now. (04-24-2015, 10:52 AM)YinYin Wrote: Also do we have a game time variable?No. I found it once (using cheat engine), but I have not added it to the API. RE: [2.2]Programmable AI via scripting - YinYin - 04-24-2015 No worries then. I can deal with unkwn3[7] for now and have found other means than game time to limit some attack frequencies. RE: [2.2]Programmable AI via scripting - makfighter@lf.in - 03-29-2016 I tried to download the dDrawDll and extracted it, then place dll file in LF2 folder (as mentioned in the post). Ran lf2.exe to start the game ddraw.dll was deleted by antivirus in my laptop. Threat detected - WS.Reputation.1 I think it is not safe link if you don't have a good antivirus installed in your laptop/desktop. |