theunreal's Forum Posts

  • Well what's your website so we can see example expectations. And what range are you paying for the games?

    Example:

    pokeisrael.net

    I will need new game every week/month

    They are very simple but I need people to be creative ^^

    I will pay 2-10$ each game depends on the quality

  • Hello

    I have a website and I impelemented some of my games I made on the free version. I used AJAX to get URL and save the scores and I have 4 games so far. I ran out of ideas and I'm looking for someone who can make simple games built for highscores (no need highscore system! I built it on my server side), I will show you example of games.

    I will pay each game if needed directly to Paypal

    Leave some contact details if your interested :)

  • There are no restrictions.. The full version of construct 2 is made for developers, and I am not a game developer - I just bought a game and I want to edit a few events out of it (and it conatins more than 100 so I can't do this in the free version)

    -- Thanks

  • No one? <img src="smileys/smiley19.gif" border="0" align="middle" /> It's just a few minutes..

  • Hello.

    I bought a .capx file of a nice game I liked and since I have the free edition I can't edit this project. I'm looking for someone who has the full version to add just 2 events in this project for me to fit my website.

    Please message here with your email if you can help, Thanks <img src="smileys/smiley17.gif" border="0" align="middle" />

  • theunreal

    there is guy sprite and women sprite

    and you have touch fast to... ops, sorry,

    it's more for Mikandi :)

    Thanks for the idea but I need better & competitive once :D

  • Hello!

    I have a browser-based game and I impelemented "Mini Games" system in it including some easy, light minigames I made with high-score table.

    I would like to hear from you some simple ideas for short games, but they must be competitive and challenging without any limits.

    Example for games I made:

    game 1:

    Clicking space for jumping with Pikachu to avoid a "wave" of water from touching him (icy-tower style just more simple :D)

    The more time you stay the better score you get.

    game 2:

    • The cursor in this game is a sprite and you need to avoid the enemy sprite which bouncing around the game background and accelerating each 10 seconds. the more you stay alive without touching the enemy sprites, the better!

    Any suggestions for simple & competitive games like that?

  • Help please? It's that hard to do design my avatar game :S

  • You need to make so that your entire game board can be re-drawn or destroyed at will.

    Destroy your entire game board, and have the window resize to 256x256 or whatever avatar size you want. Then do the snapshot. Destroy the snapshot elements, and re-size window to original dimensions, and re-draw the game board.

    Some things that will help:

    Use wait. If you instantly try to re-draw after a window resize the X and Y cords will be wong on random objects. Give it a second or 2 to cool down, then try re-drawing you window elements.

    use the Anchor behaviour. Sometimes this is helpful to keep your objects where they belong. Most of the time it does not though, so re-drawing your entire game board and putting things where you need them seems to be the best way of doing things.

    If you can not keep the elements in focus, try the system > Scroll to, to correct the viewport positioning.

    Positioning things after a window resize is more of an art than a science it seems.

    Screenshots could be really useful. I wish we could get a snapshot-under-sprite so we could easily snapshot small regions of the screen. I doubt node webkit can do this though.

    If you are trying to do this in a web-browser the rules change completely it seems.

    I am using web-browser, and it seem to be easy to downlod a spirit, I did it, but the problem is that when you design your avatar you put things on him such as hats, etc, and other spirits - and it can download the clearn spirit only, without all the additions...

  • Hello.

    I would like to make a game that allows a player to choose different avatars and desing them with hats, suits, pants, etc, with the drag & drop behavior.

    What I need help with:

    • How I can "save" a specific position ( the avatar position ) to the person computer or outpot it to a website URL?

    I mean, when the player finished to design his avatar, he will be able to publish the avatar to my website, but even if i'll find any command that prints the game-screen to the website, it will print the whole screen and not only the avatar.

    How I can do this?

  • One way that could work (I have not tried, just came up with it, so I'm not sure) is to use the Browser plugin to check the domain name on which the game runs. Supposing you know where you're going to host it, you can have an array which contains a list of allowed domains. On layout start, check if the current domain belongs to that list. If it does not, that means the game is stolen, you can do what you feel like: prevent the game from continuing, display a warning message, redirect to your original host, force the browser to close the tab...

    The downside is that you have to plan ahead where it will be hosted. If you want to host it on a new site, you'd have to update the list of domain and recompile.

    Edit: You could have the list of domains in a separate xml file that you'd import with an ajax request, that would be easier to update, but it would defy the purpose, since you would have to host it with your game (no cross domain ajax!), so anyone who grabs your game, will grab this list too and can edit it.

    Thank you very much. It wont be a disadvantage as soon as I already know and i'm hosting my game already.

    My worry is about changing the TEXT url in the .js file from my URL to different site URL. (it easys to CTRL+F and replace).

    This is what I'm trying to prevent..

  • Hello.

    I have put my website URL in my game in order to protect it from people who can just copy the .js file and put it on their website, but I saw that this text URL is very easy to change to any other website and my credit is gone.

    How I can protect my game in this case and make this text unchangeable or anything else that will help me protect my game?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • set the layout to unbounded scrolling and it should work.

    Thank you very much, It works perfectly!

    It just caused one small problem, This is my workarea:

    <img src="http://s12.postimg.org/xks99pthp/image.png" border="0" />

    And this is when I run the game:

    <img src="http://s12.postimg.org/oe9ymfo99/image.png" border="0" />

    Why is that?

  • I tried, it doesn't seem to be changing anything.. :S

    <img src="http://s7.postimg.org/lqbs9tm8b/image.png" border="0" />

  • Hello.

    My game works like that:

    User has to click thes space button in order to make a sprite goes up.

    Meanwhile, a water background incrases. if the spirit touches the water background, the player loses.

    My problem is that when the user reached with the sprite the top of teh game, it doesn't show the spirite anymore..

    How I can fix it to keep showing the sprite even after reaching the end of the game window? (like icy-tower style)