Announcements

Join the ongoing conversation on Discord: https://discord.gg/w6Tpkp2

Please read the current update for instructions on downloading the latest update. Players with Mac versions of the game will not be affected, but you will have a slightly longer wait for your version of the new maps. Please make a copy of your character folder before running the new update, just to make sure you don't lose any of your custom work.

It looks like we can give everyone a list of minimum specs for running City of Titans. Please keep in mind that this is 'for now' until we are able to add more graphics and other system refinements. Currently you will need :
Windows 10 or later required; no Intel integrated graphics like UHD, must have AMD or NVIDIA card or discrete chipset with 4Gb or more of VRAM
At least 16GB of main DRAM.
These stats may change as we continue to test.

To purchase your copy of the City of Titans Launcher, visit our store at https://store.missingworldsmedia.com/ A purchase of $50 or more will give you a link to download the Launcher for Windows or Mac based machines.

Discuss: Put a Plugin It

47 posts / 0 new
Last post
Shadow Elusive
Shadow Elusive's picture
Offline
Last seen: 1 year 8 months ago
Developerkickstarter11th Anniversary Badge
Joined: 01/10/2013 - 09:38
Discuss: Put a Plugin It

Some interesting info. Or at least, I thought it was very interesting. I'm actually quite excited by it, I love these kinds of fundamental improvements that save time and just make everything work better.

Read the Developer's Workshop post here

--------------------------

Interior Map Lead and UI Designer
Cinnder
Cinnder's picture
Offline
Last seen: 2 years 3 weeks ago
Gunterkickstarter11th Anniversary Badge
Joined: 08/26/2013 - 16:24
Sounds cool to me. When you

Sounds cool to me. When you say it's self-maintaining, does this mean that UE4 handles all the synching of variables between modules, or am I thinking too old-school when I think of modules?

Still, I can imagine what future headaches this bit of time invested will avoid, and I appreciate MWM's forward thinking. I think it's well worth the delay in seeing more chargen details to know the foundation is more secure and more adaptable.

Spurn all ye kindle.

rookslide
rookslide's picture
Offline
Last seen: 6 months 1 day ago
kickstarter
Joined: 09/25/2013 - 10:26
This sounds like a very good

This sounds like a very good improvement to the developing architecture. Less chance of developing bugs in a vacuum if there is no vacuum.

"A sad spectacle. If they be inhabited, what a scope for misery and folly. If they be not inhabited, what a waste of space." ~ Thomas Carlyle

Atama
Atama's picture
Offline
Last seen: 1 year 3 months ago
kickstarter11th Anniversary Badge
Joined: 10/09/2013 - 22:32
Nice. Was this something you

Nice. Was this something you could have moved to post-release, or is it lucky you were able to do it while still in pre-production development?

Cobalt Azurean
Cobalt Azurean's picture
Offline
Last seen: 4 months 2 days ago
kickstarter11th Anniversary Badge
Joined: 10/03/2013 - 16:39
I'm no developer, but that

I'm no developer, but that certainly sounds more efficient, and I prefer things to be efficient. Good stuff.

notears
notears's picture
Offline
Last seen: 1 month 3 weeks ago
kickstarter11th Anniversary Badge
Joined: 10/04/2013 - 17:24
Alright so I am trying to

Alright so I am trying to learn how to code but on the unity engine... so I think this means that development will be slow at first due to this change, but then after it will go really quick... is that what this means?

not my video just one I lke ===> https://www.youtube.com/watch?v=U6-SdIN0hsM

Huckleberry
Huckleberry's picture
Offline
Last seen: 1 week 6 days ago
Joined: 01/03/2016 - 08:39
I know from experience that

I know from experience that the real trial begins with integration. It seems like this will allow you to move a significant portion of your integration efforts to the left. That can only be good as it reduces the cost of failure/rework in both cost and schedule. I'm glad you guys are capitalizing on it and I hope this bodes well for the future.


I like to take your ideas and supersize them. This isn't criticism, it is flattery. I come with nothing but good will and a spirit of team-building. If you take what I write any other way, that is probably just because I wasn't very clear.
MeSoSollyWan
MeSoSollyWan's picture
Offline
Last seen: 4 months 3 weeks ago
kickstarter
Joined: 07/18/2014 - 00:54
What if one plugin breaks,

What if one plugin breaks, that is linking other plugins? Totally possible this is way too simple of a scenario, but:

Plugin 1 here -> Plugin 2 here -> Plugin 3 here

Plugin 2 breaks. What happens? Whole game breaks? Since it's all plugin on plugin on plugin?

Godling
Godling's picture
Offline
Last seen: 4 years 5 months ago
kickstarter11th Anniversary Badge
Joined: 11/02/2013 - 13:28
I hope this works lots of

I hope this works lots of software that i worked with in various jobs all had limitations that did not consider unusual functions of other programs.
Considering all the imagination that is available there m,may be syncing as mentioned d before that must be careful of. Remember the rouge tree from earlier.
Best of luck i hjave been waiting years to play this game. But if it works well then I can assume that the projects mifght find themselves easier to complete.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
As the guy who came up with

As the guy who came up with the system I'm probably the best one to answer it.

Naturally any system with dependencies will break if any of those components are also broken.

What we have now is a method of creating, testing, and debugging any part of such a chain before it gets handed up the line.

The procedure is to create the plugin in it's own project. That project is fully functional and uses the plugin its being used to test and develop. Part of that testing is to actually package that project. If that project successfully packages and runs then any other project dependent on that same plugin is more than likely to work right too.

Oftentimes the plugins earlier in the chain are nothing more than asset plugins, i.e., fonts, icons, music & sounds, etc. And of course the 3rd party plugins we get from the marketplace that have already been tested and approved by Epic Games. An example of a plugin we developed inhouse is the sliders you see in the avatar builder. It creates the sliders based on a datatable and spits out a set of values any time any slider changes which any project that uses can read.

No system is absolutely bulletproof, but steps can be taken to try to mitigate issues before they occur.

Anyways this has had interesting results. The game project can now pretty much exist as a folder that contains certain settings files and a file that tells the engine that it's a project file and what it's name is. What happens when any of the time pulls the main project, or any of the plugin projects, from our file server it automatically pulls what plugins it depends on at the same time. So if you were to look at such a project in the raw as it exists on the server you might see this file folder structure:

Config
Content
Source
CityOfTitans.uproject

When some pulls it from the server the software that manages the request looks at a internal list of what that project needs from other places and the result looks like this on the requesting person's computer:
Config
Content
Plugins
Source
CityOfTitans.uproject

Of course this sample was for the main project. For a project that is handling plugin creation, testing, etc. (which I call "Modules" because they are more than just the plugin being developed) things will look more like this both on the file server and on the developer's machine:
Config
Content
Plugins
Source
Pplugin name.uproject
(I prefix plugin project names with the letter "P" because the plugin has to have a different name than the containing project).

And in the Plugins folder on the file server you will see:
plugin name

and in the plugin name folder you will see:
Config
Content
Resources
Source
plugin name.uplugin

When someone pulls this project they will get all of the above, but the Plugins folder may also contain other plugins necessary for the one being developed to work (like fonts, and icons).

After they do work on the project they have to package and run it to show that it functions before they submit it back to the file server (which leaves out any external dependencies when it restores it).

By the way the minimal content of one of those .uproject files is just this simple text:
{
"FileVersion": 3,
"EngineAssociation": "4.19"
}

Technically you can leave of the "EngineAssociation" line to and it will prompt you to select from a list (and then it will modify the file to reflect it).

.uplugin files a little bit more complex usually - but not by much.

I hope this helps clarify things better.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Cinnder
Cinnder's picture
Offline
Last seen: 2 years 3 weeks ago
Gunterkickstarter11th Anniversary Badge
Joined: 08/26/2013 - 16:24
Sometimes I'm amazed at how

Sometimes I'm amazed at how fast coding evolves. I'm old enough to have started out using punch cards, so seeing tools to manage this kind of stuff my co-workers and I used to have to do by hand is fantastic.

And it bodes well for future developments to CoT. Seems this will be a big help in avoiding the difficult-to-maintain/almost-impossible-to-change state into which the code of the old game had become mired.

Spurn all ye kindle.

Nos482
Nos482's picture
Offline
Last seen: 3 years 11 months ago
kickstarter11th Anniversary Badge
Joined: 08/25/2013 - 14:50
Say plugin again. Say plugin

Say plugin again. Say plugin again... and I dare you, I double dare you mother#%&߀$. Say plugin one. more. goddamn. time! =P

Planet10
Planet10's picture
Offline
Last seen: 3 years 5 months ago
Joined: 03/23/2016 - 17:21
MeSoSollyWan wrote:
MeSoSollyWan wrote:

What if one plugin breaks, that is linking other plugins? Totally possible this is way too simple of a scenario, but:

Plugin 1 here -> Plugin 2 here -> Plugin 3 here

Plugin 2 breaks. What happens? Whole game breaks? Since it's all plugin on plugin on plugin?

If you have verbose error reporting, you can easily identify where the breakdown occurred. Then walk it back to see who/what was behaving badly.

"Just, well, update your kickstarter email addresses, okay? Make sure they're current?" - warcabbit

Scott Jackson
Offline
Last seen: 4 years 10 months ago
kickstarter11th Anniversary Badge
Joined: 10/20/2013 - 20:13
If this even slightly helps

If this even slightly helps cut down on unnecessary patch sizes - ignoring the other benefits for the moment - you'll be popular with all of us getting trampled under the boot of rural US connection speeds...

As a (once-upon-a-time) developer, I am all in favor of modular design that is easily testable at every level of packaging.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
I hadn't thought of the patch

I hadn't thought of the patch size angle but that is a good point.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

ArticulateT
ArticulateT's picture
Offline
Last seen: 3 years 1 month ago
11th Anniversary Badge
Joined: 02/18/2015 - 04:52
I will admit I am a touch

I will admit I am a touch wary of any cascading effect that might occur should one plugin fail somehow, but I am excited to hear that this greatly benefits the modular design of the game.

Thanks for the update!

I do a DnD Podcast, which can be listened to here.

Additionally, I write up my sessions of a Teen Heroes game here.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
Trust me, everything cascades

Trust me, everything cascades in software. What we are doing let's us intercept it better.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Ghost-Spectre
Ghost-Spectre's picture
Offline
Last seen: 5 years 8 months ago
11th Anniversary Badge
Joined: 02/01/2015 - 06:15
Cobalt Azurean wrote:
Cobalt Azurean wrote:

I'm no developer, but that certainly sounds more efficient, and I prefer things to be efficient. Good stuff.

In my field, efficiency is paramount (all part of TQM). After reading this, it sure sounds like it increases efficiency across the board. I like the fact that everyone is working in the same 'environment' that this new build brings. Which will probably help in eliminating bugs found by players while playing too.

Darth Fez
Darth Fez's picture
Offline
Last seen: 8 months 2 weeks ago
kickstarter11th Anniversary Badge
Joined: 09/20/2013 - 07:53
avelworldcreator wrote:
avelworldcreator wrote:

Trust me, everything cascades in software. What we are doing let's us intercept it better.

That was my thought. Better and easier to find and fix one plug-in quickly than have to take the entire thing apart to (hopefully) find the problem.

- - - - -
Hail Beard!

Support trap clowns for CoT!

Lord Nightmare
Lord Nightmare's picture
Offline
Last seen: 4 years 5 months ago
kickstarter11th Anniversary Badge
Joined: 10/02/2013 - 15:44
avelworldcreator wrote:
avelworldcreator wrote:

I hadn't thought of the patch size angle but that is a good point.

I would hope it either removes or reduces one of the biggest flaws with UE4: The requirement to redownload the entire game after a major or minor patch. Not too big an issue for smaller (~4-10GB) games but it gets frustrating with much larger ones.

Revenge is motivation enough. At least it's honest...

Roleplayer; Esteemed Villain

TTheDDoctor
TTheDDoctor's picture
Offline
Last seen: 6 months 3 weeks ago
11th Anniversary Badge
Joined: 03/29/2014 - 15:26
"until recently, a plugin

Yo dawg, I heard you like plugins, so we put plugins in your plugins so you can plug in while you plug in.

<==========)===O|TtDd|O===(==========>
My original character profiles!

Atama
Atama's picture
Offline
Last seen: 1 year 3 months ago
kickstarter11th Anniversary Badge
Joined: 10/09/2013 - 22:32
MeSoSollyWan wrote:
MeSoSollyWan wrote:

TTheDDoctor wrote:

Yo dawg, I heard you like plugins, so we put plugins in your plugins so you can plug in while you plug in.

Yo dawg, I heard you like memes about plugins...

cloganart
cloganart's picture
Offline
Last seen: 1 year 10 months ago
Developer
Joined: 12/12/2016 - 00:10
Atama wrote:
Atama wrote:
MeSoSollyWan wrote:

TTheDDoctor wrote:

Yo dawg, I heard you like plugins, so we put plugins in your plugins so you can plug in while you plug in.

Yo dawg, I heard you like memes about plugins...

Charles Logan
www.cloganart.com

Project_Hero
Project_Hero's picture
Offline
Last seen: 2 years 6 months ago
Joined: 10/09/2014 - 11:21
cloganart wrote:
cloganart wrote:
Atama wrote:
MeSoSollyWan wrote:

TTheDDoctor wrote:

Yo dawg, I heard you like plugins, so we put plugins in your plugins so you can plug in while you plug in.

Yo dawg, I heard you like memes about plugins...

"Let the past die. Kill it if you have to."

Interdictor
Interdictor's picture
Offline
Last seen: 4 years 5 months ago
11th Anniversary Badge
Joined: 08/22/2013 - 05:26
Anything that makes putting

Anything that makes putting the game together easier in the long run sounds like a great investment to me! Hopefully it will pay out in the future!

Halae
Halae's picture
Offline
Last seen: 3 years 8 months ago
11th Anniversary Badge
Joined: 09/17/2014 - 09:37
I'm entirely fine with a few

I'm entirely fine with a few months worth of delayed progress if it means the game will be overall better. We've waited this long; I see no reason to rush it now.

An infinite number of tries doesn't mean that any one of those tries will succeed. I could flip an infinite number of pennies an infinite number of times and, barring genuine randomness, they will never come up "Waffles".

Nos482
Nos482's picture
Offline
Last seen: 3 years 11 months ago
kickstarter11th Anniversary Badge
Joined: 08/25/2013 - 14:50
Scott Jackson wrote:
Scott Jackson wrote:

If this even slightly helps cut down on unnecessary patch sizes - ignoring the other benefits for the moment - you'll be popular with all of us getting trampled under the boot of rural US connection speeds...

I feel you, rural Germany ain't better. First world country my a...donkey.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
I started looking into the

I started looking into the patching process to see if this really provides a benefit. I suspect it does:
https://docs.unrealengine.com/en-us/Engine/Deployment/Patching

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Grimfox
Grimfox's picture
Offline
Last seen: 2 years 3 months ago
kickstarter11th Anniversary Badge
Joined: 08/05/2014 - 10:17
Next question. Which I think

Next question. Which I think has been answered to some degree already. Will custom plugins be allowed. IE I'm not a fan of the auction house plugin. Can I substitute my own? Perhaps a better question would be what sort things are a single plugin and would those be user editable, or would I have to create a plugin that attaches to the side of a particular module rather than substituting it directly.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
Plugins are on the developer

Plugins are on the developer side. You'd have to have the source code. We are trying to consider a way to provide for user mods though.
https://docs.unrealengine.com/en-us/Programming/Plugins
For us we see each plugin as another folder in the editor. I'd share a screenshot but I just discovered my image hosting is on the fritz.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Redlynne
Redlynne's picture
Offline
Last seen: 1 day 3 hours ago
kickstarter11th Anniversary Badge
Joined: 10/28/2013 - 21:15
Would it be too much of an

Would it be too much of an "ask" to require EVERY Plugin used to be coded in such a way as to document up front (in programmer friendly language) inside the plugin what variables are needed for the Plugin to function correctly, and what function calls it makes for resources outside the Plugin's confines? That way, any time you've got a breakdown failure, you have an easy set of documentation to begin your regression tracing to figure out What Went Wrong.

Integration of elements is one of the trickiest things to manage once "everything's become spaghetti code" after a few years of maintenance. Furthermore, I'd sincerely hope that there would be something akin to a "permanent team" of devs devoted to REFACTORING of the game's code so as to maintain it in a way that inhibits the evolution of code base instabilities in which the code functionally "gets away from" the people who are supposed to be working on it and maintaining it. Without guarding against future possibilities like this, it is all too easy to wind up in a place like where City of Heroes wound up, in which the Devs became AFRAID of touching the code base for fear of breaking any of an unknowable collection of interdependencies that were all undocumented. The way the Paragon Studios people described it, it was like trying to play Jenga with a stack that was ON FIRE such that not only could any wrong move collapse the stack, but there was an instinctive reaction to flinch(!) any time you had to touch the (on fire!) stack, ruining any attempts at fine motor control.

Yes, doing this sort of "document everything in the Plugin" coding habit will cost more time and effort on the front end of development, but the Easy To Modify Perk (+10) that will result from it will save way more time and effort in the future over the long haul, I'm thinking ... which is an important consideration for a game that you want to sustain and maintain for a decade (or more). Don't mortgage tomorrow in order to pay today's bills, and all that.

So ... would this sort of thing be a reasonable "ask" to implement as a standard coding (best) practice for implementation of your Plugin plans? Basically an "anything to declare?" documentation built into the Plugins themselves ...?


Verbogeny is one of many pleasurettes afforded a creatific thinkerizer.
Redlynne
Redlynne's picture
Offline
Last seen: 1 day 3 hours ago
kickstarter11th Anniversary Badge
Joined: 10/28/2013 - 21:15
avelworldcreator wrote:
avelworldcreator wrote:

I'd share a screenshot but I just discovered my image hosting is on the fritz.

https://imgur.com/


Verbogeny is one of many pleasurettes afforded a creatific thinkerizer.
avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
Redlynne wrote:
Redlynne wrote:

Would it be too much of an "ask" to require EVERY Plugin used to be coded in such a way as to document up front (in programmer friendly language) inside the plugin what variables are needed for the Plugin to function correctly, and what function calls it makes for resources outside the Plugin's confines? That way, any time you've got a breakdown failure, you have an easy set of documentation to begin your regression tracing to figure out What Went Wrong.

Integration of elements is one of the trickiest things to manage once "everything's become spaghetti code" after a few years of maintenance. Furthermore, I'd sincerely hope that there would be something akin to a "permanent team" of devs devoted to REFACTORING of the game's code so as to maintain it in a way that inhibits the evolution of code base instabilities in which the code functionally "gets away from" the people who are supposed to be working on it and maintaining it. Without guarding against future possibilities like this, it is all too easy to wind up in a place like where City of Heroes wound up, in which the Devs became AFRAID of touching the code base for fear of breaking any of an unknowable collection of interdependencies that were all undocumented. The way the Paragon Studios people described it, it was like trying to play Jenga with a stack that was ON FIRE such that not only could any wrong move collapse the stack, but there was an instinctive reaction to flinch(!) any time you had to touch the (on fire!) stack, ruining any attempts at fine motor control.

Yes, doing this sort of "document everything in the Plugin" coding habit will cost more time and effort on the front end of development, but the Easy To Modify Perk (+10) that will result from it will save way more time and effort in the future over the long haul, I'm thinking ... which is an important consideration for a game that you want to sustain and maintain for a decade (or more). Don't mortgage tomorrow in order to pay today's bills, and all that.

So ... would this sort of thing be a reasonable "ask" to implement as a standard coding (best) practice for implementation of your Plugin plans? Basically an "anything to declare?" documentation built into the Plugins themselves ...?

Simple enough. We just add a document to the plugin folder. And all comments in Blueprints and Unreal C++ are a built in feature. Plugins that are shared by other plugins are usually just containers for common items like icons, sounds, images, etc. There will be some code ones but usually of a simple nature if we can help it. Just a collection of reusable components.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
Redlynne wrote:
Redlynne wrote:
avelworldcreator wrote:

I'd share a screenshot but I just discovered my image hosting is on the fritz.

https://imgur.com/

I'm my own image host. I accidentally forgot to renew my domain and I had to wait for a few hours before it propagated. Managed to wrangle out some discounts with my ISP (Google) and my web hosting company (Hosting 24) over it. I didn't ask for them but they gave them to me anyways. Doing my own hosting is much less of a headache and I usually buy subs for years at at time.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

rookslide
rookslide's picture
Offline
Last seen: 6 months 1 day ago
kickstarter
Joined: 09/25/2013 - 10:26
That's a lot of sandwiches

That's a lot of sandwiches man, jk! lol

"A sad spectacle. If they be inhabited, what a scope for misery and folly. If they be not inhabited, what a waste of space." ~ Thomas Carlyle

Radiac
Radiac's picture
Offline
Last seen: 4 months 1 week ago
kickstarter11th Anniversary Badge
Joined: 10/19/2013 - 15:12
From a standpoint of eventual

From a standpoint of eventual game quality, this sounds good.

From a fan standpoint, I have to tell you I read this update as "This is why we're going to delay the rollout of the game/chargen for like another 6 months or more in a future update." For the record, I never expected ANY of the soft deadlines to be met and am willing to wait for a GOOD game to be made, so please don't take that as a "HURRY UUUUUP!" comment, I just wanted it to be known that I took this update to mean that.

R.S.O. of Phoenix Rising

rookslide
rookslide's picture
Offline
Last seen: 6 months 1 day ago
kickstarter
Joined: 09/25/2013 - 10:26
Radiac wrote:
Radiac wrote:

From a standpoint of eventual game quality, this sounds good.

From a fan standpoint, I have to tell you I read this update as "This is why we're going to delay the rollout of the game/chargen for like another 6 months or more in a future update." For the record, I never expected ANY of the soft deadlines to be met and am willing to wait for a GOOD game to be made, so please don't take that as a "HURRY UUUUUP!" comment, I just wanted it to be known that I took this update to mean that.

Interesting... I hadn't looked at it like that. I looked at it as "this is why it's taking so long guys, we area trying to do the best we can at every turn and when something that will help in longevity comes along you can bet its a delay, as we want all the longevity we can give you..."

But I may have read too deeply (or just flatly wrong) into it...

I hope it means this will help to speed up the entire process overall while possibly setting us back a lil bit at the beginning, which I too can handle... Though I am getting itchy to play again...

Lol again, as if it'll be the same game what am I thinking, this is gonna be so much more when it's up and running! yeah not at first but with updates and such, yeah for sure over time!

"A sad spectacle. If they be inhabited, what a scope for misery and folly. If they be not inhabited, what a waste of space." ~ Thomas Carlyle

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
We are hoping that it

We are hoping that it actually speeds up the process. The setup takes a bit longer but it's time well spent.

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Shadow Elusive
Shadow Elusive's picture
Offline
Last seen: 1 year 8 months ago
Developerkickstarter11th Anniversary Badge
Joined: 01/10/2013 - 09:38
Yes, in this case, the

Yes, in this case, the invested time should pay off in spades and, if anything, shorten delivery dates.

--------------------------

Interior Map Lead and UI Designer
Grimfox
Grimfox's picture
Offline
Last seen: 2 years 3 months ago
kickstarter11th Anniversary Badge
Joined: 08/05/2014 - 10:17
We spent 40 years building

We spent 40 years building the ultimate AI that can now build the game...

I tease.

This reminds me of a cartoon where a coder automates a task and spends time troubleshooting the code where as the "idiot" manually does all the work. In the end the coder and the manual laborer accomplish the task in the same amount of time. Obviously there is a longer term benefit to figuring out how to automate the process the first time that isn't documented in the cartoon. The second time the task has to be completed it's done comparatively instantly.

Redlynne
Redlynne's picture
Offline
Last seen: 1 day 3 hours ago
kickstarter11th Anniversary Badge
Joined: 10/28/2013 - 21:15
Grimfox wrote:
Grimfox wrote:

We spent 40 years building the ultimate AI that can now build the game...

Note to self: remove Skynet from mailing list for updates ...


Verbogeny is one of many pleasurettes afforded a creatific thinkerizer.
Scott Jackson
Offline
Last seen: 4 years 10 months ago
kickstarter11th Anniversary Badge
Joined: 10/20/2013 - 20:13
Grimfox wrote:
Grimfox wrote:

We spent 40 years building the ultimate AI that can now build the game...

Got a weird spam email this morning, something about a highway planned to go in, title was "Really Important But Why Bother", then about a minute later a text message that just said "brign towull 2 launch".

Maybe check in case the server needs to be relocated...

Foradain
Foradain's picture
Offline
Last seen: 2 months 2 weeks ago
kickstarter11th Anniversary Badge
Joined: 10/25/2013 - 21:06
Scott Jackson wrote:
Scott Jackson wrote:

Got a weird spam email this morning, something about a highway planned to go in, title was "Really Important But Why Bother", then about a minute later a text message that just said "brign towull 2 launch".

Maybe check in case the server needs to be relocated...

Down in the basement, in an unused lavatory, with a sign marked, "Beware of the leopard"?

BTW, I think the last word in that text is spelled correctly.

Foradain, Mage of Phoenix Rising.
Foradain's Character Conclave
.
Avatar courtesy of Satellite9 Irezoomie

avelworldcreator
avelworldcreator's picture
Offline
Last seen: 2 weeks 21 hours ago
Developer11th Anniversary Badge
Joined: 12/04/2012 - 12:19
I miss Douglas Adams

I miss Douglas Adams

-----------

Senior Developer/Project Manager/Co-Founder... and then some.

Atama
Atama's picture
Offline
Last seen: 1 year 3 months ago
kickstarter11th Anniversary Badge
Joined: 10/09/2013 - 22:32
avelworldcreator wrote:
avelworldcreator wrote:

I miss Douglas Adams

May his soul have a long, dark tea time.

Kazander
Kazander's picture
Offline
Last seen: 2 weeks 6 days ago
Joined: 08/01/2016 - 16:41
Redlynne wrote:
Redlynne wrote:
Grimfox wrote:

We spent 40 years building the ultimate AI that can now build the game...

Note to self: remove Skynet from mailing list for updates ...

Skynet is the name of the VPN server at my work place....

Lothic
Lothic's picture
Offline
Last seen: 2 months 3 weeks ago
kickstarter11th Anniversary Badge
Joined: 10/02/2013 - 00:27
Kazander wrote:
Kazander wrote:
Redlynne wrote:
Grimfox wrote:

We spent 40 years building the ultimate AI that can now build the game...

Note to self: remove Skynet from mailing list for updates ...

Skynet is the name of the VPN server at my work place....

"Skynet" is also the name that Chinese Social Credit engineers have used for a portion of their upcoming systems and for years the British have been using a system they call Skynet as part of their homeland defense monitoring system.

Basically we're already screwed...

CoH player from April 25, 2004 to November 30, 2012