My new Game

Hi,I am a Chinese student and I published a Mobile Game on Nokia Ovi,Display name is whack-a-whacker.
Moderator edit: link removed
whack-a-whacker is an upgrade version of the classic game with upbeat music and funny characters.You can whack any of people in the real world using you mobile phone's camera.
It's my first time to upload my application to the app store and the process is really tough.
So I hope that if any of you can download and test my game, it should be a great inspiration for me.
Thank you for taking time and mail to me(Moderator edit: email address removed) if you have any suggestions.
Edited by: Darryl Burke -- no advertisements here. Locking this thread.

Hi Yan. Merci for posting this.
This is the first time I've seen GitHub used here.

Similar Messages

  • How can I transfer my old dragonvale island into my new game center account?

    I restored my ipod, but now I had to make a new game center account. Since Dragonvale used my old GC account, it forgot my island and generated a new one. I dont wanna have to start over again. Help me! (dont say to start over)

    You said you restored your iPod. Did you restore from backup? If yu did then yur game progress and Game Center stuff should have beeb restored.

  • I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I'm keeping the app, i just need the $19.00 back.

  • Puzzle Game and new Game Problem

    Hello Java Programmers,
    Once again I have encountered a problem with my ongoing puzzle game. I have completed it all. Now I want my user to be able to start a new game in after they win. I tried repaint and update method with JFrame but it deosn't reshuffle the buttons. How can I do that. The code geos below.
    [/b]
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.JOptionPane;
    public class PuzzleGame{
       String[] btn_Labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"," "};
       String[] labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"};
       private final int ONE = 1, TWO = 2, THREE = 3, FIVE = 5;
       private boolean WIN_STATE = false; 
       private JButton b[];
       public String clicked_btn_label = "";
       //Constructor method.
       public PuzzleGame(){
          showSplashScreen();
          initGame();
       public static void main(String args[]){
          PuzzleGame game = new PuzzleGame();
       //When a new Game started labels of buttons are shuffled using this method.
       public void shuffleNumbers(){
          String temp = null;   
          for(int j=0; j<16; j++){
          int k = (int)(Math.random()*16);
          temp = btn_Labels[j];
          btn_Labels[j] = btn_Labels[k];
          btn_Labels[k] = temp;           
       //Game initialization method.
       public void initGame(){
          b = new JButton[16];
          JPanel p = new JPanel();
          JFrame frame = new JFrame();
          shuffleNumbers();
          for(int i=0; i<16; i++){
             b[i] = new JButton();
             b.setText(btn_Labels[i]);
    b[i].setActionCommand(""+(i+1));
    for(int i=0; i<16; i++){
    b[i].addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent e){
    clicked_btn_label =(String)e.getActionCommand();
    doSwapping();
    checkWin();
    p.add(b[i]);
    p.setLayout(new GridLayout(4,4));
    frame.getContentPane().add(p);
    frame.addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e){
    System.exit(0);
    Dimension dm = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (dm.width - 230)/2;
    int y = (dm.height - 240)/2;
    frame.setBounds(x,y,320,240);
    frame.setSize(340,240);
    frame.setVisible(true);
    //This method swaps the clicked button with the empty button if it doesn't violate rule.
    public void doSwapping(){
    int num = Integer.parseInt(clicked_btn_label);
    String temp;
    if( (num + ONE <= 16) && b[num].getText() == " " && num % 4 != 0){
    temp = b[num].getText();
    b[num].setText(b[num-ONE].getText());
    b[num-ONE].setText(temp);
    else if((num - TWO >= 0) && b[num-TWO].getText() == " " && ((num - ONE) % 4 != 0)){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-TWO].getText());
    b[num-TWO].setText(temp);
    else if( (num + THREE < 16) && b[num+THREE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num+THREE].getText());
    b[num+THREE].setText(temp);
    else if( (num - FIVE >= 0) && b[num-FIVE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-FIVE].getText());
    b[num-FIVE].setText(temp);
    // else{}
    public void checkWin(){
    WIN_STATE = true;
    for(int i=0; i<15; i++){
    if( b[i].getText() != labels[i])
    WIN_STATE = false;
    if(WIN_STATE == true){
    JOptionPane.showMessageDialog(null,"Congratulations You Have won the Game!","You Win",JOptionPane.INFORMATION_MESSAGE);
         initGame();
    public void showSplashScreen(){
    JWindow w = new JWindow();
    JPanel p = (JPanel)w.getContentPane();
    JLabel l = new JLabel(new ImageIcon("splash.jpg"));
    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (d.width - 230)/2;
    int y = (d.height - 240)/2;
    p.add(l);
    w.setBounds(x,y,320,240);
    w.setVisible(true);
    try{
    Thread.sleep(10000);
    catch(Exception e){
    w.setVisible(false);
    [/b]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Sorry for violation. I would like to add a menubar to the application containing a single menu button for new game. adding a menubar is simple but how can i reshuffle the buttons using methods like update etc. or any other way.

  • When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    Carefully follow steps 1-9 outlined by wjosten in this post: https://discussions.apple.com/message/13356770#13356770.  This will not, however, avoid wiping any non-purchased media from your phone (ripped CDs, etc.) as this is only synced one way: from your computer to your phone.  You will have to either rebuild your iTunes library with this content and sync again to restore it to your phone, or purchase 3rd party software to copy it from your phone to iTunes prior to syncing (such as Touch Copy).

  • Itunes wont let me sync new games

    When i try to sync the games I just bought(song summoner) i get a message saying that if I do it will replace all games on my ipod with the games in my library, but the problem is my ipod video came with several simple games(Brick, Parachute, Music Guiz, and solitaire) preloaded on it, will it delete these games if I ok the sync or will they be ok, and if they will get deleted is there anyway get my new games onto my ipod without losing the preloaded ones?
    Thanks for your help!

    If you mean the built in games( and I think you do), they can't be deleted. If you mean games that someone else put on your iPod before you bought it, they would be deleted.

  • How do I create a new game center id for my own games

    My kids have many games on my phone (4s) how do I create a new Game center id and load some of the same games as my own?

    You can change the account by tapping or clicking Account and then signing out of the current account and into the new one(Apple ID).

  • Can I update my older ipod touch to play new games that require ios 4.3?

    Can I update my older ipod touch to play new games that require ios 4.3?  After I purchased games for my son's ipod, they would not upload due to ios.  How can I update that without purchasing a new touch?

    iOS 4.3 requires a third generation or newer iPod touch; you don't need to buy a brand new device in any case.
    (74008)

  • Hi all, can someone please help. I'm trying to transfer Game Center data (games, achievements/scores and friends) to a new Game Center account. Thank you in advance :)

    Trying to transfer all Game Center data to a new Game Center account. Thank you in advance. Much appreciated.

    I am having the same problem
    after the update to 5.0.1
    I mean updating shouldn't become a task that everyone will dread

  • Looking for a particular upcoming new game

    There is a new game coming in the near end of October called Zettai Hero Project: Unlosing Ranger vs. Darkdeath Evilman (Yes. That's the title.). But the game itself is not on the website yet for preorder.
    Here is the cover:

    Deathdeath.. Evilman?
    The unlosing ranger I can see as a translation bo-bo.
    But Darkdeath Evilman?!
    Is this the result of some game designers severe writer's block?
    I'm sure that the GAME is nice, tho
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • IPOD 5th generation will not upload new games

    I purchased a new game and it will not upload it on my IPOD. It says it needs the 1.2 version which it has.
    I installed Itunes 7 and when the ipod is sync it says it's syncing software is version 1.2. I restored my IPOD and it still did not eliminate the problem.
    I can not find a way to contact support. It keeps looping me to articles and will not give me an email address or phone number.
    Someone please help.
    PC   Windows XP   none

    I finally got the answer in the Itunes discussion section.
    You must "authorize" your PC to use games / music purchased from the Store.
    Click on the "Store icon"
    Go in "Store" -> "Authorize PC" It will authorize your IPOD to be able to load games. Otherwise, double-clic the image of the game between the Library column and the game description: a pop-up window will be prompted and you can authorize your pc.

  • How can I start a new game on an App that is stored in iCloud?

    I have a game stored in iCloud - that is my only option.  I want to start it as a new game on a different device and I can't.  I tried creating a new account and that didn't work.  What do I need to do?

    How that that game maintain/record status?
    What do you mean by stored in iCloud?
    Do you have to log into that game?
    Have you tried contacting the developer?

  • 30-gig video iPod and new games

    I downloaded one of the new games (Mahjong) to my WinXP iTunes (v.7.0) w/o problem, but I can't load it to my iPod (v.1.2) without getting the "can't run it on this computer" error message. {Yes, I know we can't run these games w/i iTunes on the computer .. that's not the issue!} I tried changing my iPod settings (w/i iTunes) to sync. all games .. and Mahjong was listed .. and then I tried "dragging" the game to my connected iPod .. no luck.
    Any ideas?
    DSeagrave: Correcton .. the error message says I'm not authorized to play the game on this computer.
    Message was edited by: DSeagrave

    yeop, thats video
    well, perhaps sign in to iTunes Music store with the user ID that u used to buy the game... its a long shot, but it could be some weird bug.
    you are using the same computer that you used to purchase the game correct?
    hmm.. thats a long shot.. but it's worth a go...
    aside from that i would suggest ringing apple, or going into an Apple store..
    or, "restore" your iPod software? reinstalling iTunes..
    they are rather nasty options... anyone else got suggestions?

  • HT4314 I have tried to log into clash of clans on my iPad and it just keeps going to a new game rather than the one saved on my iPhone. I have been using the game centre and same user name and password ?

    I have tried to log into clash of clans on my iPad and it just keeps going to a new game rather than the one saved on my iPhone. I have been using the game centre and same user name and password ?

    I have the same problem.. EXACTLY. .  When phoning Apple Support they had trouble understanding my problem and couldnt find any type of solution. No one seems to take responsibility for GameCenter issues. The assistant escalated the problem but no one could find an answer. .
    The only idea was to set up a new apple id, hence a new GameCenter account. . But that would loose all the itunes data. Anyone got ideas ?

  • I am getting an error when trying to download  the new Game of Thrones shows. The error is err = -61 You do not have the privilege to make changes. (err = -61) you do not have the privilege  to make changes. I have not had this problem before

    I am getting an error when trying to download  the new Game of Thrones shows. The error is err = -61 You do not have the privilege to make changes. (err = -61) you do not have the privilege  to make changes. I have not had this problem before

    Solution:
    Open Disk Utility.
    Select your external hard disk and run a “verify” on it. After a few minutes (depending on the size of your drive), you should be good to go. You don’t need to run a “repair” on it... (at least I didn’t have to). See photo for reference.
    This should fix the permissions issue, because on my Mac running Mountain Lion I was unable to edit the permissions in the get info dialog window even after "unlocking" the drive.

  • Can I use existing games in new Games Centre

    Just updated my 3gs to OS4.1 with no problems, my question is:-
    Can I use existing games already bought & paid for at the iStore in the new Games Centre? Iv'e tried dragging them in to no avail i'm begining to think in that money making fashion of Apple that you can only use newly purchased games.

    You mean in the money making fashion of Apple which doesn't make any money off the sale of paid apps with all free apps hosted and distributed by Apple at no charge to the developers with free apps? Apple keeps a percentage of the sales price for paid apps to cover associated expenses. The bulk of the revenue for paid apps is paid to the app developers with the developer for a paid app setting the price for their app.
    An app must be updated by the developer for the app to be included with the Game Center no different from an app needing to be updated by the developer for iOS4 to be suspended when leaving the app instead of being quit.

Maybe you are looking for

  • Airplay - playback in multiple rooms no longer in sync

    In the wake of Mac OS X v10.8.3 and iTunes 11.02 upgrades (and after years of automatically working flawlessly and seamlessly), Airplay music playback no longer is in sync between an AppleTV v3 connected to a circa 2004 Pioneer Elite VSX-23TXHK A/V R

  • Request forward with a PDF file is not working in 8.1 SP2?

              Hi,           I have a servlet that forwards the request to a pdf file. The code works fine           in WL61. However when I ran the servlet in WL8.1SP2, all I get is a blank page.           However, instead of PDF I forward the request to

  • Conecting MacBook Pro to Apple TV2...not web

    Ok here is the question: I am trying to conect MacBook Pro to my TV via Apple TV2 ( I had it onces done) with out havin't internet? I done onces, but I forgot how to? I dont have internet, MacBook is about year old, I have Apple TV2, and a 'linksys W

  • Search not finding certain matches

    We have some document control documents that are not showing up when searched for based on certain keywords but are for others.... The document title (as well as name) contain "Program Code1 Code2 Desc".  So for example it might say "11123# ABC U1234

  • Very simple database require

    Hi I'm looking for a very simple database solution. I have some very large .csv files that I need to query against before importing to Excel. Filemaker, etc. is over the top for what I need. Any ideas? Thanks. PowerPC G5   Mac OS X (10.4.6)