Little Fighter Empire - Forums
[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)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12


RE: [2.1]Programmable AI via scripting - A-Man - 07-05-2012

But i think YinYin's way make the code more readable and more beginners friendly.


RE: [2.1]Programmable AI via scripting - Som1Lse - 07-16-2012

Updated!
Version 2.2

The rand() function now works correctly with replays.
Added weapon_num.

Download: http://www.mediafire.com/?pxd026nqoqgw0


RE: [2.2]Programmable AI via scripting - Rhino.Freak - 07-19-2012

something's wrong maybe, when i opened the lf2 it also used to open a black window earlier,, but now in the newer versions its not happening, is it not working?


RE: [2.2]Programmable AI via scripting - A-Man - 07-19-2012

Nope that terminal was removed. It still works though.


RE: [2.2]Programmable AI via scripting - Boop - 07-19-2012

You need to download the Debug version for the console. Why is this so hard to understand.


RE: [2.2]Programmable AI via scripting - Rhino.Freak - 07-20-2012

coz all the ones here are not computer experts


RE: [2.2]Programmable AI via scripting - Kevin - 07-22-2012

is it possible to copy the original LF2 AI so that we don't need to work on the whole thing? :P (I mean, e.g. movement, defending projectiles, taking weapons :P )


RE: [2.2]Programmable AI via scripting - YinYin - 07-22-2012

(07-22-2012, 08:20 AM)Kevin Wrote:  is it possible to copy the original LF2 AI so that we don't need to work on the whole thing? :P (I mean, e.g. movement, defending projectiles, taking weapons :P )

that is the basic AI
with this represented by the void id() function

if you only write the int ego() function the basic AI will remain and call your ego function whenever it deems a special move to be executed

edit: thats a yes and no - you dont have to copy it, but you can still use it


RE: [2.2]Programmable AI via scripting - Silverthorn - 07-22-2012

So, just to be clear, it is not possible to "enhance" Rudolf's AI, for example, right? One only has the chance of either modifying Template's AI or write everything from scratch.


RE: [2.2]Programmable AI via scripting - Azriel - 07-22-2012

(07-22-2012, 08:36 AM)Blue Phoenix Wrote:  So, just to be clear, it is not possible to "enhance" Rudolf's AI, for example, right? One only has the chance of either modifying Template's AI or write everything from scratch.

if i understand it correctly, you can. you just have to script what you have in ego().

i.e.
int ego() {
if ( the target is in a favourable position ) {
.... // do something
.... return 1;
}

return 0;
}
}

it's only if you define the id() function that you overwrite the basic ai entirely.



Azriel~