InDWrekt's Recent Forum Activity

  • Welcome to Construct. Please read this pinned forum post for the best ways to get help in this forum:

    construct.net/en/forum/construct-3/how-do-i-8/best-help-tips-forum-139528

    As stated in the post, the easiest way to get help with issues is for you to give use access to your project.

    Somthing that may help (no guarantee without seeing the actual project) each layout has a separate instance of the player (and other characters). When you leave one layout and enter another, every change made to the player will be reset to the level default. To persist information between layouts, the information needs to marked as global.

    On a side note:

    I plan on repeating this for every level

    Duplicating code over multiple event sheets is not a good idea. If you find there is a bug, or want to add a new feature, you have to remember to make the change on all event sheets containing the duplicated code. Instead, layouts can all use the same event sheet. Also, if you do have events that are specific to certain layouts, you can include an entire event sheet into another. So, put all your common events into one event sheet and include it in all the other event sheets that need it.

  • Try this out. The controller object requires you to reference an index on all events/actions tied to it. Give your characters an instance variable set to the controller index they are using. Then, loop through all the controllers and check the events passing the loopindex in as the controller index. See the image below.

  • On your "is in touch" event, try adding the system "trigger once while true" condition.

  • construct.net/en/tutorials/series-in-game-shop-117

    This is a Construct 2 tutorial but the concepts are still the same.

  • Can you post the project so we can see the issue?

    As for having to be really close to the turret, the turret behavior has range a property. The is the distance in pixels from the origin of the turret that allows the turret to pickup a target. Raise this number until it is acting the way you want.

    Did you give your bullet objects the bullet behavior? The turret just spawns an object without giving it any properties. The bullet behavior is what causes these objects to act like a bullet.

    On the bullets becoming huge though, I have no idea without seeing your project.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Ok, just a real quick rundown. The instance of the game that is the server/host should be the only instance that decides where objects are, the state they are in and the actions they are taking. It should then send out a packet of information to all connected clients updating them with all the information they need to display properly.

    All client instances should only collect user input and send it to the server, receive updates from the server and draw the clients viewport from the updated information.

    How do you do this? Well, there are LOTs of different ways to handle it. Some games have a separate program that just runs as a server with all the server code and a client program with just the send/receive/update code. Others use a variable which defines if the current instance is the client or the server and runs the necessary code accordingly. Construct has an IsHost expression that can be used for this.

    Unfortunately, you are going to have to evaluate what will work best for your specific project.

  • Without seeing your project code, it sounds like your client is running code that should only be run by the server. When the client connects, does it run the code to randomly set the position of the asteroids or does it get the position from the server and just set the asteroids using that information?

  • Then I would suggest keeping the tiles as separate objects. If you place them all in a single object, it will be more work and harder to fix. To organize the tiles, I would place them all into subfolders organized either by type or location (i.e. grass in one subfolder water in another or tiles for forest zones in one subfolder and mountains in another). Also, I would suggest you build yourself a level designer. It will make a world of difference designing your levels.

  • Generally speaking, sprite fonts and Chinese have never worked particularly well together, because generating and processing sprites for 20 thousand characters is not very efficient.

    cause i need make add many text for my game ,Chinese had Thousands of characters

    Interesting. Thank you for letting me know. This is something I was unaware of. However, I fail to see how creating a spritefont will be any different than creating any type of font. In either case, you are still required to design all the characters needed. Whether it is an actual font or a spritefont, it doesn't change the number of required characters.

    You would probably be better off looking for a royalty free character set already available online.

  • Fontforge is an open source program to create fonts. It uses svg to create the characters so you can design them how you want. It is also pretty easy to learn.

    I do want to ask, why would using Chinese Hanzi characters mean you are unable to use a spritefont? Spritefont objects allow you to define the characters you are replacing. It isn't just for English character sets.

  • Have you tried using the tilemap object? Honestly, this would be the best/easiest way to use tiles.

    If there is a reason that you can't use the tilemap object, it would be easier to have each tile as individual objects but that will quickly grow your project, making it unmanageable with lot's of tiles.

  • You're going to have to post your project to get help with this.

InDWrekt's avatar

InDWrekt

Member since 19 Sep, 2011

Twitter
InDWrekt has 7 followers

Trophy Case

  • 13-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

18/44
How to earn trophies