iGamersBox's Forum Posts

  • Space Arcade is in early development! I had join Scirra a year back but not been able to purchase license, as every time my savings get depleted on some emergency or something similar. But after making some prototype and showing it to my friends, one of them gladly accept my request and help me to buy a license. So bout the licence few days back and started working on Old school space shooting game.

    It’s not that i can’t make any other games but while replicating old school games would be a great idea to learn some basic game development and designing problems.

    Your feedback are welcome. <img src="{SMILIES_PATH}/icon_e_confused.gif" alt=":?" title="Confused"> (I guess it would be early to ask feedback though any tips would be nice)

    P.S. I am not a developer and never been, but always love to play games which inspired me to do this. I amusing graphics from opengameart.org and http://www.lostgarden.com/2007/04/free- ... s-and.html

    seeya!

    Aryan <img src="{SMILIES_PATH}/icon_twisted.gif" alt=":twisted:" title="Twisted Evil">

  • Thankyou shinkan that did the job!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I was working on game where there is a sound toggle button!

    If user touch sprite button and global variable is 0 the it should change frame to off and variable to 1.

    here is the image see attachment

    Is there any other possible way to make a toggle button. I know it's pretty basic but don't know what went wrong.

    Thanks

  • It's not Layout size, it's window size or screen size! check window width and height in project properties!

  • NP good for you! i have already checked on arcade and will download for iOS! though i suggest put one more screen shot stating game controllers and object.

    Also i believe there was you tube confession kinda video on which you have made this game! Beautiful and marvelous! Keep coding bro!

  • Set Condition

    if up arrow key is down then [action] Set (player.y-1)*dt

    if down arrow key is down the [action] Set (player.y+1)*dt

  • I meant window height and layout height! on project propertites

  • The is simple and nice but the distance between line of car and other line of car is bit close.

    second check collision if its in box change that to exact car outline

    third please put restart button

    rest is good so far! keep working on the game. Increase the height of the window and layout also increase speed of the car, will be more fun to play.

  • There is inbuilt effect called horizontal glow and vertical glow try using them they can be used for sprites and layer both.

  • QUESTION

    How can I register the last checkpoint position and place the character at this position ?

    Ans - You don't! actually you are trying get xy of a object with bullet behaviour and if you respawn you will be spawn on out side layout or some where random as you said.

    Try this for each text sprite passed collect data and store it in a array and then when respawn collect those data and set the position.

    this tutorial is perfect for you https://www.scirra.com/tutorials/321/ho ... game-slots

    Also this can help you https://www.scirra.com/tutorials/526/ho ... -savegames

    Sorry for my bad english i am working on it!

  • Thanks a lot ramones that solved the issue. I have created two variables as height and width and set my default value. Volla Works like a charm but not without your help.

    Thanks once again!

    Aryan

  • didn't work bro!

    I tried 'trigger once' but it didn't work, and if i put it under sub event of 'On start of layout' it creates all the 121 sprites on XY 16,16.

    if you permit me i'll send my capx file in PM.

    Though thanks for your effort and help!

  • You can set all variables on every tick

    For example I don't that when you are applying bullet speed change but you can also do this way

    set every tick bullet speed to [global variable Speed] and change the global variable as per your selection, now it has to change the speed!

    Let me know if it works!

  • To check you can create another variable say Heart collection check

    So on first 5 collection set check=1

    if check = 0 and heart =5 then health +1 and +1 to check

    if check = 1 and heart = 10 then health +1 and +1 to check

    if check =2 and heart = 15 then health +1 and + to check

    I hope this is what you are looking for!