tulamide's Recent Forum Activity

  • Great question... probably something every game designer needs to think about.

    I use a notebook most of the time. Track what I'm doing, write down where I left off, sketch ideas, etc... one notebook per project and crapton of pencils, just in case.

    Within C2, I use a lot of groups and comments. It takes some extra work, but if you're diligent, C2 isn't too tough to organize. I've found a love for Functions in regard to organization. Break up tasks into widgets that can be called or altered without having too re-write larger pieces of game logic. Never be afraid to use multiple event sheets, either--all variables on one, all sub-functions on another (organized into groups), and several others for different layers or mechanics.

    I guess there's no one method, huh?This is pretty much what I'm used to do, too.

    I want to stress that using multiple event sheets is a key for organization, even more than using functions and groups. While the latter might steal some ms, event sheets are merged to one big event sheet on export (if I recall correctly), so basically there is no disadvantage in using them. Oh, and the comment option is there: Use it, everywhere, anytime.

    I often thought: "Bah, that's a too easy solution for the problem. Don't need to make notices."

    And just 2 days later I thought: "How the heck does this work, what did I do here?"

    In general, it is all just about visual organization. The less text at once, the easier for us to follow. Imagine the book "The lord of the rings" without being seperated into parts, chapters, sections, breaks and indentation. Would anyone have read it?

  • You do not have permission to view this post

  • You do not have permission to view this post

  • There have been so many threads about it in the past. But well, let'S start it all over ;)

    My favourite still is

    freesound.org

    It's hard there to not find what you're looking for.

    According to Weebly you may access pure HTML/CSS to change your site in any way you like.

    According to Wikipedia, this is the way to integrate a favicon in the header of HTML (after having created and stored "favicon.ico"):

    <link rel="icon" href="http://example.com/favicon.ico" type="image/x-icon">

    (Note: Internet Explorer needs rel="shortcut icon")

    Hope it helps.

  • 60 seconds is really tough for someone like me, who can't draw at all <img src="smileys/smiley36.gif" border="0" align="middle" />

    However, with the very last second I managed to "finish" my beautiful sheep: <img src="https://dl.dropboxusercontent.com/u/11182740/pictures/sonstige/SHEEP_1384782927.png" border="0" />

  • Yes, you're right. A shader would be the easiest solution to that. The disadvantage is that it consumes a lot of gpu power (drawing half of the screen pixel by pixel on every tick is quite some task). It might not run very well on mobile devices, at least on older tablets. But that's something you would have to test.

    Beforehand, the best way would be to post in "help wanted". You are free to offer my effect as a base for a convertion to a C2 effect and the necessary adjustment to just the half of the screen.

  • Can't add anything to the last post. And Tobye good find, I missed that one completely, but indeed can be a problem.

    As Tobye said, if you still can't solve it Tig0r try creating a demo capx with the error. It would make it much easier to track down the issue.

  • From the picture I can't tell, when and how often "Add obstacle" is used. If you do it at start of layout, it'S ok. But if this happens several times throughout the running of the game, you will have a lot of issues, because there sems to be no "Clear obstacles" action. Without that action you are constantly adding to the obstacle map (the same object several times), which makes the obstacles map so huge, that it runs forever^^

    Also, event 68 doesn't make sense. If it fails to find a path, it won't find one, when just repeating the same action. And regenerate obstacle map is a redundant action in this event. Nothing has changed, so no need to regenerate the map.

    In short:

    Try adding a "clear obstacles" action, followed by regenerate map, if you are using "Add obstacle" anywhere else than in start of layout.

    Remove the actions from event 68. Instead, for debugging purposes, you could fill a text with "Path not found" or something.

  • Wow, you just affronted hundreds of people...Let's see who is able and willing to help now <img src="smileys/smiley2.gif" border="0" align="middle" />

  • Use an instance variable on the friends, a boolean will work fine. Set it to false initially, and whenever player attacks friend, compare if that boolean is set (=TRUE). If so, ignore the penalty, if not (=FALSE), reduce the score and set the boolean to TRUE.

  • Use the max() expression. max returns whatever value is greater.

    For example

    Set score to max(score - 50, 0)

    will only subtract until 0 is reached, from then on it will return 0

    keepee beat me to it <img src="smileys/smiley36.gif" border="0" align="middle" />

tulamide's avatar

tulamide

Member since 11 Sep, 2009

Twitter
tulamide has 3 followers

Trophy Case

  • 15-Year Club
  • Coach One of your tutorials has over 1,000 readers
  • Email Verified

Progress

17/44
How to earn trophies