What's the point in Game Center leaderboards if any one can submit a hacked score?

Just the question above, I really thought that a serious company as apple would have taken care of this issue...

This is a user-to-user technical support forum. You're not addressing Apple here. Submit your feedback directly to Apple using the appropriate link on the Feedback page:
http://www.apple.com/feedback
There are lots of people who would answer that there is no point to Game Center at all. But that would just be an opinion.

Similar Messages

  • What is the point of having 17 apps if no one is skilled in that many disciplines anyway?

    I have been told how having access to 17 apps is a really great deal. The problem is no one is skilled in that many different disciplines. Even if someone took the time to learn all that software they would still not be competent in all those fields. I don’t know any creative types that are really good at graphic design AND video AND illustration AND music AND the web coding etc. What good is access to all those tools if you don’t have all the skill to do all those different line of work?
    I keep hearing people say “Isn’t it great to know that you could use all that software if you wanted to?” No! It isn’t! Having access to tools without the necessary skills to competently use them is pointless! I have worked in graphic design for about a decade and have been improving over all that time so the idea that I could just start a new field adequetly is redic! You need to have an entire team of people who work in many fields to do all those things really well. So my question is what is the point of having the software running off one machine with a license for only one user?

    @W_J_T (and MikeChambers)
    “yeah you gotta be good at something rather than no good at anything, that is true. ;-)
    I guess that is why I don’t understand this big push by Adobe to make their users become mediocre in many areas. Can you please elaborate on this point Mike Chambers? Why should I be bad at a lot of things rather then good at a few things? I don’t get it.
    “As far as apps vs fields, the first thing many people wanna know is if you know the required software for the given task(s).”
    On one hand I understand the need to have software skills on the other hand software skills without artistic talent does little good.
    “Why that is I don't know, its rather odd and does not allow people the same ability to only focus on their more specialized sectors like in the past with the Creative "Suites".”
    I understand the problem Adobe had with suites; all the products had to be released on the same time schedule which meant some were released way before they should have been. CC gets around that problem but Adobe hasn’t done a good job at telling why anyone needs all the apps.
    “Did you just wish to have some dialog, or do you have a specific question or suggestion about things? I am kind of confused at this point sorry. ;-)”
    It just seemed odd to me when I kept hearing these Adobe evangelists getting excited about the ability to use so many apps. I came here since I was hoping Adobe could explain why having apps in so many fields that you are not talented in is a good deal. So far I am still waiting for Adobe to answer that question.
    “your passion seems to be solely the design aspect of things.”
    Yes, it is but perhaps most importantly is the issue of time dedicated to learning a new craft. I have a good amount of design work so looking into a career change at this point doesn’t make sense for me. If I changed my career I would have to turn down design work that I currently have  coming in and that would be a little silly.

  • What's the point with cellular on iPad mini if you can't make calls?

    Most people today have smartphones and all smartphones have built in portable routers that can be connected to any Wi-Fi device, like an iPad. So when I saw that the iPad Mini had both just Wi-Fi or both Wi-Fi and cellular I bought the one with cellular because naturally I thought you'd be able to use it as a cell phone as well. So since the SIM card is just used for data connection, then it's a wast of money to have the iPad with cellular. The Wi-Fi is enough if you have a smartphone because then you can just use it as a portable wireless router. That's what I was doing before I was dumb enough to upgrade my Wi-Fi iPad to the one with cellular as well. Should have asked about that before I upgraded since making regular phone calls and having SMS capabilities were the main reason I got the one with cellular so I didn't have to have both my phone and iPad with me. How can you have cellular features and not be able to call?

    Bi_Bi_Love wrote:
    Most people today have smartphones and all smartphones have built in portable routers that can be connected to any Wi-Fi device,
    That is speculation on your part.  Many people do not have smartphones - according to news groups like Gartner, only about 40% of global mobile phone sales are smart phones, so the majority of people do not, in fact, have smartphones.
    Second, many of us with smartphones, do not have tethering plans, and do not want tethering plans.  Many people only use or need the cellular connectivity of their iPad or tablet occasionally, so why pay a much more expensive monthly fee for a tethering plan when you can just enable the cellular data on the iPad when needed, and only for as long as needed?  Adding a tethering enabled data plan on your smart phone can be awefully expensive if you only occasionaly actually use tethering - why pay for something you are not using?
    Its true that most iPads sold are in fact wifi-only, and even of the 3G and LTE units sold, many never activate service.  So it would appear that few actually use cellular data.  However, I am sure there are people who do - and having to tether all the time to another device every time you need cellular data would likely be a real annoyance for some true road warriors who are often in places without free wifi.
    And you can make calls on your iPad - you just need to use a VOIP service and client.

  • What's the point of having an iPhone 5 if u can't download applications from the App Store that are more then 50 mb?

    Help

    There is no limit using WiFi, or download with iTunes on your computer and sync the phone via USB.

  • What is the point of Precision and Scale in Number Type?

    Version :11.2
    What is the point in having PRECISION and SCALE in number type? If you create the column with just NUMBER ie.without
    specifying precision or scale , you can enter numbers with any precision and scale.
    SQL> select * From v$version where rownum < 2;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    SQL> create table t1 (col1 number);
    Table created.
    SQL> insert into t1 values (223.9939394);
    1 row created.
    SQL> insert into t1 values (88.228384);
    1 row created.
    SQL> insert into t1 values (9.34);
    1 row created.
    SQL> insert into t1 values (000.00);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from t1;
          COL1
    223.993939
    88.228384
          9.34
             0Did you ever have a business scenario where a Numerical column should store values only with a fixed precision and scale ?

    Omega3 wrote:
    Version :11.2
    What is the point in having PRECISION and SCALE in number type? If you create the column with just NUMBER ie.without
    specifying precision or scale , you can enter numbers with any precision and scale.
    SQL> select * From v$version where rownum < 2;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    SQL> create table t1 (col1 number);
    Table created.
    SQL> insert into t1 values (223.9939394);
    1 row created.
    SQL> insert into t1 values (88.228384);
    1 row created.
    SQL> insert into t1 values (9.34);
    1 row created.
    SQL> insert into t1 values (000.00);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from t1;
    COL1
    223.993939
    88.228384
    9.34
    0Did you ever have a business scenario where a Numerical column should store values only with a fixed precision and scale ?Lots of business requirements for specific precisions and scales.
    A persons Age may required to be stored as whole numbers of no more than 3 digits.
    A sum of money may required to be stored with no more than 2 decimal places of accuracy e.g. GB Pounds and Pence or US Dollars and Cents
    A unit of length may required to be stored in metres with 2 decimal places for centimetres
    A shoe size may be required to be stored with one decimal place for half sizes
    etc.
    etc.
    Yes, you may just create all of them as generic NUMBER datatype, but creating them with precision and scale can provide additional information about the limitations expected for the values stored, especially for things like reporting tools that may use the specified precision and scale to determine how to display the values automatically (by default).
    If you start questioning "what's the point?" then you may as well say what's the point in having a NUMBER datatype when we can store numbers in a VARCHAR2 datatype? or what's the point in having a DATE datatype when we can stored dates as VARCHAR2 datatype? etc.
    No point in asking such a question because there's almost always a point to these things (and if there isn't they get deprecated in later versions).

  • I have an ipad 2 the game center it know is telling me that game center is currently disabled,you can change this in the settings menu. I do not know were in the settings to look, to fix the settings

    i am getting a message on my ipad2,  i was playing frogger pinball and and the front says  story, challenge, add and store next to store it has a leaf with 3 people icons i clicked on that, and i am getting a message that says i hit game center on the bottom the message reads game center is currently disabled. you can change this in the settings menu I have gone to the settings menu but I am not clear as to were to fix the program.

    i got your response and i went to the restrictions, and I have gone to game center on the bottom it says multiplayer game on adding friends on, i have tried to turn it off and it wont let me, first shoul i try to shut it off and 2nd do you know why it might not be letting me do so it i should be

  • Seriously, what is the point in Firefox 29 in removing from Sync the ability to copy all the settings on Device A to Device B?

    Sync used to work, albeit clunkily before Firefox 29. Now it does nothing at all in Firefox 29. What is the point? Bring back Sync functionality so we can copy all the tabs, bookmarks, passwords, and history from Device A to Device B.

    Tyler - Yes I have, yes they are, and yes they are.
    No, Sync is very different in Firefox 29. Before, you could pair a device and specify that you want copy all the tabs, history, bookmarks, and passwords on Device A to Device B and it would do it. It worked. Now in Firefox 29 you upgrade, you log in, you ask it to Sync and nothing happens. It does not work.

  • What are the points for on my Game Center

    Okay so I noticed that I have points on my iPhone for the Game Center what are the points for?

    http://en.wikipedia.org/wiki/Game_Center#Points

  • What's the point of warranty?

    I am a student coming from Hong Kong  to London for postgraduate study. Before I left Hong Kong, I decided to buy a netbook for my lecturers in the UK. Lenovo s10-2 was chosen because the version available in HK comes with 6 cell battery with international warranty and Lenovo Protection Service (against accidental damage).
    This is the first Lenovo machine for me. All was well and I was starting to appreciate Lenovo. Suddenly, the LED screen started to flick with white lines moving across the it, just two weeks after I bought it from Hong Kong.
    Yesterday, I called the UK support line who initially suggested replacement (because the purchase is last than 30-day old). However, when the agent found out that I bought the machine in Hong Kong, he said I could only get it repairs. Fair enough.
    I packed the netbook this afternoon ready to ship it to the repair center. Being not sure about whether or not my proof of purchase was needed, I called the support line again. This time, the agent gave me a "friendly warning" or maybe a management of my expectations.
    I was told that Lenovo believes that there is a 99.5% chance that these type of problems are due to “internal damages" caused by users! I was also advised that sending the machine in for repairs risk myself getting into paying 230 pounds (pretty much the purchase cost) to get the LED screen fixed because it is likely to be not covered by warranty. On top of that, I would have to pay 65 pounds even if I want my netbook back after inspection without getting fixed because again, 99.5% chance that "damages by users" would be concluded!
    What's the point of warranty? Totally unacceptable. Any thoughts? Should I take the risk?
    I only got the machine just over two weeks ago and used for less than 10 times!

    seblee,
    This bears a bit of looking into to provide you the best answer.   Sometimes, the accidental damage policies are only valid in the home country, and I would like to check.  If that were to be the case, you would have replacement or repair options in HK, but standard warranty terms would likely apply in UK.
    Your situation sounds exceptional, and I'd like to look into this and see what can be done.
    Can your send me a private message with your contact information and the serial number from the bottom of the unit?
    Sorry that you are having this trouble.  Will see how we can help.
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • What's the point of To Do's?

    What's the point of the To Do list syncing if the iPod is going to show all To Dos, even completed ones, in an alphabetical list? Shouldn't it only show the current non-completed ones?

    I had created a youtube video to show how the bluetooth in control center should work, let's hope apple make it in the next update!
    What the bluetooth control center should be on iOS 7

  • I am extremely upset. I purchased my iPad in SA and I am traveling in Greece. When I want to make use of the free apps, I get a message that the app is not available in the SA store. What is the point of having an iPad if you cannot use it worldwide?

    I am extremely upset. I purchased my iPad in SA and now I am in Greece. I cannot download free apps as I get a message that the apps are not available in the SA store and only in US stores. When I change to the US store the same thing happens. What is the point of having an iPad if I cannot use it worldwide??? I feel that I wasted my money purchasing it as I specifically purchased it to use when I travel. How can I get access to all the available apps and why are they restricted.

    You can use your iPad worldwide. However, each AppleID is tied to
    a specific country's store. To use the AppStore in any country, you
    must be in that country and have a credit/debit card issued by a financial
    institution in that country with a verified billing address in that country.
    It is the developer's choice which AppStores he makes his app available
    from, and some countries prohibit certain apps.
    To make a purchase from the US store (including downloading a free app
    available in the US store), you must be in the US and have card issued
    in the US with verified billing address in the US.
    You can use your purchases from the SA store worldwide, but you
    cannot make purchases in other than the SA store unless you meet
    the aforesaid conditions.

  • What is the point of the download window if you use stacks?

    Greetings,
    One of the most annoying things about the download window was the fact that the window always hung around after completing dowloads in Tiger when using safari. To me, that was just a time waster of always pressing Apple+W to close that window.
    When Leopard was released, I was excited to realize that one function of the download stack was to recevie downloads from safari after completed. However, after completion, the download window still sticks around and I still have to close it... then navigate to my stack of downloads to mount the image. What is the point of the download window is I use stacks now? Why can't the window disappear after completion?
    //Cheers

    Aaargh!! Me too - it's so annoying! Firefox has a downloads window as well - I just don't see the point of it. I didn't like it in Tiger either.
    As a way to see the progress of downloads, it's fine, but it should at least close when all the downloads are finished, and completed downloads should not display.
    Ideally it should look & work exactly like the Copy window in Finder - the one that comes up when you are copying or moving a large file or number of files from one folder to another.
    Is there a hack that will make it work like that?

  • My wifes iphone was too full to record a video so I upgraded her cloud storage to 20g and did mine at same time. Cloud is showing 15g free storage butshe still cannot take any mor photos as "not enough memory" What is the point of paying for the extr

    My wifes iphone was too full to record a video so I upgraded her cloud storage to 20g and did mine at same time. Cloud is showing 15g free storage butshe still cannot take any mor photos as "not enough memory" What is the point of paying for the extr

    Hello Pushtheriver,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning iCloud storage issues:
    Get help using iCloud storage
    This may also help:
    Understanding iOS device capacity
    You can sync and download many different types of content on your device. Some types of content (such as music and videos) typically take more space than others (such as notes and books). The amount of space taken by an app depends on the app's purpose; complex or graphically intense apps usually take more space than simpler apps.
    If your device is near its capacity, you can remove some of the less used content to make room for more.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • What is the point of having indented levels in course outlines?

    What is the point of having indented levels in course outlines? It's not possible to add any materials or posts to this. I want to avoid having simply a long list of topics that are difficult to manage. When I create a topic in the outline, I can indent it, but then I can't add any posts to it as it doesn't even show up as a heading in course manager.
    I've been trying to have some kind of logical organisation of materials, but the only thing you seem to be able to do is have a long list of topics.
    Which makes me wonder why the possibility of indenting levels is there at all - it seems to be a completely worthless item.

    I guess the point of the indented lists is to provide the user with some description of the topic’s contents. It's a standard convention in the table of contents of books. It might pay to break your course down into a number of courses if the list of topics is getting too unwieldy.

  • HT5287 If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?

    If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?
    Or am I missing the bigger picture?

    As long as you have a Superdrive or an external burner/drive, burning, watching, installing, etc. from CD or DVD will work just fine. And so will sharing.

Maybe you are looking for

  • Error while posting XML from a scheduled transaction to another transaction

    When I try posting an XML from one transaction to another in a different project by calling it as a webservice, it doen't hit the other transaction. I see this in the Netweaver error logs: java.util.zip.ZipException: error in opening zip file at java

  • Having a problem with email.  It continues to ask for my login id

    My email addresses were set up at the Apple store.  Now that it is home, my email regularly requests my password.  I have submitted my password numerous times.  I get some email, then it does it again. Some replys are sent and then others sit in the

  • RAW Support in InDesign and Roundtrip to Lightroom

    Julianne Kost suggested I suggest this feature when I spoke to her yesterday at PhotoPlus in NYC. I am currently designing wedding albums using InDesign and I like being able to roundtrip to Photoshop and back. But most images in the book are not bro

  • Having problem opening iMovie 7... with Panasonic PV-GS500.

    Hi there, I just bought iMac 4Gb. I am tried to conect my Panasonic Digital comcoder PV-GS500 into iMAC. Camcoder inserts using Firewire and USD port for Mac. When I inserting, it does read my SD card on the camcoder, but iMovie should opeb automatic

  • What driver to use?

    What driver to use?Hey All, I have been using the default Creative drivers since I got my X-FI Titanium a couple months ago. Overall I have had a good experience with them but I am finally tired of the random cracking/distortion that I get every once