There's a lot of brute force searches. I am reluctant to break them up at this point just because its easier to debug one table than debug 10 tables, but I'll admit, I'm reaching the point where I fix a bunch of things, press go, and walk away. Lu…
I do not think there is a maximum number of tables you can put in one file or folder. I haven't come across that, at least, and I kind of think I would have by now.
I don't know if I can speak to the programming side of this thing, but IPP is seriously an amazing tool. As for updating... the prompt thing is kind of a problem. You can work around it in a real clunky, behind-the-scenes, not on the fly kind of w…
Any idea if it would go faster... It takes about 15 minutes to spit out a full world. I assume that's because the program has some kind of limit to how much memory it can use (which I don't know how to change), but really, I don't know.
Keep in mind, it's pretty rough. This is an example of one kingdom. It spits out enough to make a world (4d4+x), plus it spits out wild kingdoms, details regions, gives information about the religions of the world, the nature of magic, a world his…
I think I buried the lead in this.... I will pay someone to help me. I'm trying to hire someone who knows how to take what I've made in IPP and turn it in into a web app, but hiring people has been difficult elsewhere because they don't know IPP. …
I may have missed something. Is that a dictionary table? My thought is that it was the colon. You don't have a type for the table, so it automatically assumes it's weighted. The weight you gave it (it's looking for a number) is a string, no? It…
What I do is I have one file which is all the use commands and one table that basically just says go. You don't want to upload that file somewhere. Keep it local (I put most of my files up on my dropbox). If you upload it somewhere else, the prog…
I see your point and I think there are too many undefined variables in the thing. I basically just busted the table into two tables, one where it includes all of the adventure level variables (and gets motives for villains in the adventure) and one…
Also, if I remark out the table call completely, everything works fine. I don't get a weird [ or {. There are no invalid calls or anything like that. I would think if there was something out of place before this, it would wash out somewhere in th…
I should add that I started remarking out lines to see where it breaks, and it breaks when on the line [masterPV==[|{curhench}|0]]&... would there be some reason that including that line would cause the table to not output print statements BEFOR…
It's also possible to ditch the entire dictionary table and just use an elaborate series of [when] statements on the word that would have been the key. I haven't tried this, but it might be the most useful workaround.
Good list...
There's also a maximum number of lines one entry in a table can take up. I'm not sure what that limit is, but when it comes up, the program spits out all remaining lines as text. I have an initializing "table" that has all of the val…