supatails wrote:Alot of threads created by those looking for help are often overlooked.
This isn't really true here on gE. Users usually will get a response within a days time, which is quite acceptable, and hardly any questions are unanswered.
supatails wrote:Sometimes people will stop visiting a thread even if that person still needs help.
Again not a big concern, since if people continue to post their questions, we will still try to answer it. If ever someone feels their question wasn't answered properly, or was forgotten about, all they would need to do is bump the topic while reiterating what the problem is. For instance, you posted this.
http://game-editor.com/forum/viewtopic.php?f=1&t=12313&start=15#p87444By your response, it wasn't clear if you figured out what was wrong, but since I mentioned what part of the code wasn't doing what you wanted, you might have figured it. But, if you were still having trouble on that, all you need to do is post again.
supatails wrote:To start off, I'll show off a block of code I just made for fun:
- Code: Select all
int Birth=0;
double Death=Year*78.06
if (YourLifespan>=Birth && <=Death){Live=1;}
if (YourLifespan<Birth){CreateActor("Body", "Perpetual_Growth", "Spirit", "(none)", 0, 0, false);}
if (YourLifespan>Death){DestroyActor("Event Actor");ChangeParent("Spirit", "(none)");}
For the record, this code won't work. There are two main problems, assuming all undeclared variables are meant to be declared elsewhere. First is the missing semicolon on the second line, and the second is the if statement on the third line. If you want to use multiple conditions you'll have to restate the variable, like this.
- Code: Select all
if(YourLifeSpan>=Birth && YourLifeSpan<=Death)
supatails wrote:I guess I'll get another opinion or two on it but if people don't like the idea I'll just remove the thread to avoid confusion.
makslane has voiced against this kind of topic, as like NightOfHorror says, it makes it harder for users to find the answers they are looking for. So while this kind of topic is okay for teaching, it shouldn't be used for answering questions like the forums are. This topic was used to teach new things to users, and is sort of like what you are suggesting.
http://game-editor.com/forum/viewtopic.php?f=5&t=6854