Staredit Network > Forums > Modding Projects > Topic: The UED AI Project
The UED AI Project
Jun 28 2017, 1:26 pm
By: Nekron
Pages: < 1 2 3 4 >
 

Sep 10 2021, 10:06 am Nekron Post #41



Hey, that's outdated for years now unfortunately. UEDAIP only supports the SCR Starcraft version (including the SD one you can download for free) - I'm using samase features like extended dat entries that can't be easily ported to 1.16




Sep 19 2021, 6:43 am RYQuery Post #42



Can anyone provide me with the final Starcraft Zerg mission file? I have to access the missions through the custom maps folder and it seems to be missing.



None.

Sep 19 2021, 10:49 am Nekron Post #43



Episode 2 is work in progress right now, counterintuitively broodwar was finished first. You can track update progress on the project's Discord.




Sep 19 2021, 8:49 pm RYQuery Post #44



Quote from Nekron
Episode 2 is work in progress right now, counterintuitively broodwar was finished first. You can track update progress on the project's Discord.


Ah okay, I read Blaze's notes on the game and it included the final level so I thought I missed it.



None.

Dec 17 2021, 8:19 pm itq2012 Post #45



I have a question. In this mode, we create our own campaign, insert and play AI dedicated to this mode, and sometimes enemy AI units gather northwest whenever we have time, do you know how to solve it?



None.

Dec 17 2021, 11:10 pm Nekron Post #46



You mean that you're making custom maps within the confines of the mod, right? Some AIscripts I write use Locations to rally their attacks to; if that location is not placed on the map, the attack will instead rally to x,y 0,0 which is top left corner of the map. You would have to either modify them to use locations you place in the map, or match location IDs (the number SCMD gives in the console text when creating a location, it's 1 less than default location name) between the script and the map. So for example, in xZ8A, the AI uses these locations to rally:
Quote
:early1
attack_to Loc.70 Loc.74
return

:early2
attack_to Loc.71 Loc.75
return

:early3
attack_to Loc.72 Loc.73
return

:mid1
attack_to Loc.76 Loc.98
return

:mid2
attack_to Loc.90 Loc.96
return

:mid3
attack_to Loc.91 Loc.97
return

:target_air
time_jump 15 late_air
random_jump 128 aire1
goto aire2

:late_air
random_jump 85 air1
random_jump 128 air2
goto air3

:aire1
attack_to Loc.92 Loc.95
return

:aire2
attack_to Loc.93 Loc.94
return

:air1
attack_to Loc.99 Loc.73
return

:air2
attack_to Loc.100 Loc.96
return

:air3
attack_to Loc.101 Loc.97
return

:target_drop
random_jump 128 drop1
goto drop2

:drop1
attack_to Loc.102 Loc.103
return

:drop2
attack_to Loc.104 Loc.105
return
This is a lot of locations to match and realistically it would be way easier to just edit the script.
Overall I write a lot of map-specific features that rely on death counters, locations, etc etc. I have thought about making stock campaign scripts in the past that could be used in whatever maps, but didn't really get around to it - and there isn't that much of a demand either, I think you're the first person ever that tried doing sth like this.

I'm not sure where are you from, but if you're either Russian, Korean or Spanish, there's a chance we can have someone translate questions if you have any more of them and are not comfortable with English.




Dec 24 2021, 5:18 pm itq2012 Post #47



Oh! I see. Thank you for the detailed explanation.
But I have one more question. Edmund Duke (Battle Cruiser Hero) unit was in Unit Type 263 (UnitID: 263), so I'd like to ask how it was produced. Even if I tried to produce Edmund Duke using SCMDraft2, I couldn't find Unit Type 263 (UnitID: 263) at all. I would appreciate it if you could let me know what program you used.

Oh, I'm a Korean user who enjoys playing UEDAIP. This remaster mode is really interesting to me and it's really fun.



None.

Dec 24 2021, 10:03 pm GGmano Post #48

Mr.Pete-Tong

Edmund Duke is the terran hero siege tank i dont know if thats why you cant find it as an battle cruiser



A Legendary Map Maker, Player. Apparently im more than intresting to observe Irl

Ill try do my best in making all youre watchers happy

The maps I made are tweaked into perfection and maximum strategy added

Dec 24 2021, 10:52 pm Nekron Post #49



Thank you for enjoying the project! Hope it will continue to be interesting in the future.

Unit IDs above the normal DAT limit are created using a DAT editing software that I don't think is publicly available yet, I'm not sure if it's technically finished. There are also upgrade DATs above the limit etc

In SCMDraft you can input unit IDs manually on the map or in some triggers (not create and not some conditions) to check/use those units (so for example; place a wraith and edit

Unit ID 263 is a Duke Hero clone created so that I can use the original Duke unit ID as a Battlecruiser clone for the AI; long story short, it's a weird way to avoid some AI hardcodes




Jan 22 2022, 4:43 pm BashKa Post #50



Hello Nekron. First thing I would like to thank you and all people involved for such a great mod for my favourite strategy game.

Yesterday I tryed to play UEDAIP wia LAN with my fried and found that Terran faction is divided by Dominion/UED subfactions depending on colour whitch you select before the match. It took a LOT of time and endless relaunches on various maps but still we found that process quite fun in some way :D

I am sure this was done for some good reason but sill would like to ask is there any way to play Terrans with both subfactions combined? I started to play this mod only a few days ago and still didn't even started to play campaings. BUt watching Jayborino's gameplays found that these campaings by themself react to some of your actions in a far perspective. For this reason i would like to ask is there any txt or some other complete changelog of all changes and tips for playing?

And last thing. I noticed that this mod has some similarities with my another favourite Revolution mod. For this regard would like to ask how you look to some of this mod's changes like Eng. Bay upgrade for +2 armour to all Terran buildings or nukes don't use supply cost to build? Or how difficult for Zerg for example to implement some burrow moving mechanics in Remastered? Also noticed that Guardian used to have anti air attack and Devourer melee? Was it a thing before or wthat?)

Think that's all. Sorry for so many questions but me with my friend found this mod really interesting. Thanks in advance. With Kind Regards

Post has been edited 2 time(s), last time on Jan 22 2022, 8:38 pm by BashKa.




Jan 22 2022, 11:05 pm Nekron Post #51



Hi! =)

I think that on LAN/Multiplayer the only way would be to use UMS maps with preset colors - colors selected in Map should allow both factions. That will show as "Map Specified" color in lobby - it should work on maps like Jungle Rumble too, I think, but to use AI with that you'd have to add Melee AI via triggers (which would work fine, if you do add it)
Otherwise, both factions are also enabled by default in singleplayer melee

There are a few resources; I think the most comprehensive is Blaze's document here - https://docs.google.com/document/d/1wJycLsb3roFwB5SyYN5QsnXJpg2BDEQ5C7_6J62-ndg/edit?usp=sharing
Other than that, I think your best bet, if you have any questions, is just to ask on Discord.

All those upgrades sound really hard to do, sorry! Though I'm also pretty conscious of upgrade bloat now, and will avoid adding new upgrades to BW+. Also I tend to think the number of upgs / faction customization is pretty good now!

Guardian AA attacks and melee Devourers are vanilla (episodes 1 to 3) features only; they're "normal" in BW (with some stat tweaks still)

Also here's a list of which color is Terran or UED in melee;
Quote
UED selected with following colors in lobby: Pink, Olive, Lime, Navy, Magenta, Grey, Black. AI is random color instead, and random gives 50/50 at UED vs Terran





Oct 7 2023, 11:33 am robizeratul Post #52



Hello!


I saw there are multiple videos of people playing this game. However nobody has shown an installation guide. Does anybody have a video on how to install it?

I can't make it work. I downloaded both files. I click them, go to starcraft remastered/x86/starcraft.exe. they open up in the task manager but nothing happens , the game doesn't launch.

What am i doing wrong? just installed starcraft remastered for the first time and wanted to play this mod.



None.

Oct 7 2023, 7:44 pm Nekron Post #53



Quote from robizeratul
Hello!


I saw there are multiple videos of people playing this game. However nobody has shown an installation guide. Does anybody have a video on how to install it?

I can't make it work. I downloaded both files. I click them, go to starcraft remastered/x86/starcraft.exe. they open up in the task manager but nothing happens , the game doesn't launch.

What am i doing wrong? just installed starcraft remastered for the first time and wanted to play this mod.
Normally, you just download and launch the executable (UEDAIP.exe). Depending on your location and system, sometimes Windows Defender can kill the process before the mod launches, so you may need to add it as an exception




Oct 8 2023, 10:06 am robizeratul Post #54



i disabled all antivirus.

Does the game version matter maybe? i have the starcraft remastered v1.23.9.10756 version which is not the newest one. I can't think of anything else.



None.

Oct 8 2023, 12:00 pm Nekron Post #55



Could matter, yeah - it was updated to keep up with the newest releases




Oct 8 2023, 12:11 pm robizeratul Post #56



Any chance of having an older version somewhere in the archives please?



None.

Oct 8 2023, 12:20 pm Nekron Post #57



Can't you just download the newest SC version from the Blizzard launcher? It's free




Oct 8 2023, 12:23 pm robizeratul Post #58



I have pirated version. I wont give any money to bllizzard after being scammed by W3 reforged...(my favorite game). guess ill get it on sale or something. Thank you.



None.

Oct 8 2023, 12:30 pm Nekron Post #59



You can download the SD version for free, only Remastered (HD) costs money >_>




Oct 14 2023, 4:48 pm RenovareProject Post #60



Everyone, please get a GOOD SCAN against viruses for your computers. I have found a good spying virus on all the three Mod files. No, it can't be removed from the Mod itself.
Nekron, please redo the download file and put it clean on the table this time. No one wants a Trojan Horse in their devices.

Attachments:
Pour StarEdit Network.bmp
Hits: 5 Size: 1934.74kb



None.

Options
Pages: < 1 2 3 4 >
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[11:50 pm]
O)FaRTy1billion[MM] -- nice, now i have more than enough
[11:49 pm]
O)FaRTy1billion[MM] -- if i don't gamble them away first
[11:49 pm]
O)FaRTy1billion[MM] -- o, due to a donation i now have enough minerals to send you minerals
[2024-4-17. : 3:26 am]
O)FaRTy1billion[MM] -- i have to ask for minerals first tho cuz i don't have enough to send
[2024-4-17. : 1:53 am]
Vrael -- bet u'll ask for my minerals first and then just send me some lousy vespene gas instead
[2024-4-17. : 1:52 am]
Vrael -- hah do you think I was born yesterday?
[2024-4-17. : 1:08 am]
O)FaRTy1billion[MM] -- i'll trade you mineral counts
[2024-4-16. : 5:05 pm]
Vrael -- Its simple, just send all minerals to Vrael until you have 0 minerals then your account is gone
[2024-4-16. : 4:31 pm]
Zoan -- where's the option to delete my account
[2024-4-16. : 4:30 pm]
Zoan -- goodbye forever
Please log in to shout.


Members Online: Excalibur