![]() |
[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: [0.2 Update]Programmable AI via scripting - Boop - 06-09-2012 Oh I see. Armour is ID based, not object based, so I guess making ID specific things would kill two birds with one stone. I might do it ![]() RE: [0.2 Update]Programmable AI via scripting - Alblaka - 06-09-2012 (06-09-2012, 03:28 PM)Lord Silva Wrote: Oh I see. Armour is ID based, not object based, so I guess making ID specific things would kill two birds with one stone. I might do it Je, but shouldn't there be an armor counter of sorts linked to objects somewhere? Afaik hitting somebody with armor reduces the armor by 1 for a few ticks, that counter would be useful to have. Could as well be the more resonable way of implementing Armor-detection then just via ID. Imagine someday people use a modded exe to assign custum armor values to other IDs... going by ID wouldnt work anymore then :P RE: [0.2 Update]Programmable AI via scripting - YinYin - 06-09-2012 extremely laggy print all stats code: Code: clr() next up: some AI for maveric/frozen/clide/other edit: @Alblaka armor is initially just a higher capacity for the bdefend value and being in a kind of state 7 (almost) all the time so the AI could basically just subtract that on anything involving bdefend conditions depending on the faced id and also have differing tactic as the ids with armor have a constant defense so id should be enough RE: [0.2 Update]Programmable AI via scripting - Boop - 06-10-2012 (06-09-2012, 03:37 PM)Alblaka Wrote:(06-09-2012, 03:28 PM)Lord Silva Wrote: Oh I see. Armour is ID based, not object based, so I guess making ID specific things would kill two birds with one stone. I might do it It's not object based, it's ID based. This stuff is buried inside the onHit() (made up name) function. So every time any object gets hit at all, it checks what ID it is and stuff. I'm 99% sure there is no armour thing per object thingy. https://docs.google.com/spreadsheet/ccc?key=0Alv9oQRdfX3FcjVYcDZXWWZjbWx4RFRVbHdmZFpIWVE#gid=0 See the spreadsheet. RE: [0.2 Update]Programmable AI via scripting - YinYin - 06-10-2012 AI that mimics the targets movements Code: if(target_d==1){D()} AI for clide RE: [0.3 Update]Programmable AI via scripting - Boop - 06-10-2012 Updated. YinYin's mimic AI requires version 0.3. RE: [0.3 Update]Programmable AI via scripting - YinYin - 06-10-2012 Code: if(target_d==1){D()} RE: [0.4 Update]Programmable AI via scripting - Boop - 06-11-2012 Updated. You need to put a return 0 or return 1 at the end of the script or it crashes! This is important! RE: [0.4 Update]Programmable AI via scripting - YinYin - 06-11-2012 ok then even further improved mimic AI for 0.4: Code: if(target_d==1){D()} will also update the tutorial and clide's AI RE: [0.4 Update]Programmable AI via scripting - Alblaka - 06-12-2012 (06-11-2012, 09:16 PM)Alblaka Wrote: Ow, I'm totally going to write AI scripts for all my chars :3 (06-11-2012, 10:14 PM)YinYin Wrote: @Alblaka: the self_weaponid i understand, the other two i don't - maybe elaborate those in the actual hex project thread from silva RNG = Random Number Generator = Something to generate randomness. The third point would permit some of my chars to react accordingly if they're using upgrade moves or similar. It would be great if there would be a function/call to access a -T0 object (Actually, scrap the T0, it should better grab all objects) -which is currently on the exact same x & z coordinates as self <<< Effectively an object sticking to the character via ik8 Sort of "enchant_*". This would permit some of my characters to deal with the fact they can use special abilitys granting "charges" and similar stuff. Would love to have the tags -enchant_id -enchant_frame -enchant_hp (and probably -echant_weaponid , something none of my characters currently uses, but could be used for even more advanced DCing in future) (06-10-2012, 03:11 PM)Lord Silva Wrote: It's not object based, it's ID based. This stuff is buried inside the onHit() (made up name) function. So every time any object gets hit at all, it checks what ID it is and stuff. I'm 99% sure there is no armour thing per object thingy.Random guess, B4? "Shaking" pretty much describes the effect of armored people getting hit without taking damage. Unless it's an entirely different thing. As well I remember to have read about "bdefend" being used for determining an armors remaining strength as well, not sure whether that's correct though. I think you probably still didn't understand what exactly I want. I'm aware armor is coded via ID. But if you hit Julian twice, wait half a second and hit him two more times, the fourth hit punches through the armor, indicating there must be any sort of counter to determine when the "armor" of an object is temporally depleted. Or probably I'm just constantly missunderstanding you and you're trying to tell me even that is stored ID wise? (though that should cause retarded buigs if fighting multiple opponents of the same ID, f.e. a group of knights) |