Is it ready?

iDeveloperziDeveloperz Member Posts: 1,169
Hi guys,

Do you thing "Earth Attack" is ready for the appstore?
http://gamesalad.com/game/play/32913

All the rest like:
-bonuses
-Bosses
-Better graphics
I can put in updates to keep the user from deleting it.

So what do you say?

Comments

  • giacomopoppigiacomopoppi Member, PRO Posts: 914
    i think it is ready but you need to fix 2 more things:
    -the on/off sound doesn't work properly (it doesn't turn back on)
    -in the info page you have an "options" button.... there are no options!!! :) put "Home instead

    P.s. put the bonus level later on (when u have more points)
    + i would change the Bonus level sign. go in the actor and go to colors, set alpha to 0.(do this only if u have written Bonus level! with the "display text function")

    ahh!!! noticed something else:
    play the game, go past the bonus.
    try replaying the game and you start with 800 points and no meteors come!!
    solve that by doing at the end of the bonus level change attribute points to 0.
    i dont know why the meteors don't come on screen... maybe yousaid that when u reach 800 points stop meteors appearing and go to bonus level?
  • iDeveloperziDeveloperz Member Posts: 1,169
    I don't how to fix the on sound =[

    Ill do the options thing now.
    Bonus sign (no problem)

    Ill work on the bonus thing now aswell.
  • giacomopoppigiacomopoppi Member, PRO Posts: 914
    i think that it doesn't matter too much if u cant fix the sound. if anyone complains u can just fix it in the updates.
    apart from that the game is fine :)
  • iDeveloperziDeveloperz Member Posts: 1,169
    Thanks I Have done some bug fixes

    So it might work a little better now.

    I deleted the main page aswell
  • jonmulcahyjonmulcahy Member, Sous Chef Posts: 10,408
    to enable / disable sound is pretty easy with an attribute and a few rules

    create an attribute called Sound

    create a rule on your button:

    when touched change attribute game.Sound to (game.Sound+1)%2. This is make the attribute switch back and forth from 0 to 1. You can create two images for on and off and just create two more rules:

    if game.Sound is 1
    change image to 'on image'

    if game.Sound is 0
    change image to 'off image'

    then whenever you have a sound played, just create a rule around it

    if game.Sound is 1
    play sound

    thats it!
  • iDeveloperziDeveloperz Member Posts: 1,169
    Oh right thanks. =]
Sign In or Register to comment.