Best MMORPG for Iphone 3G and a question about gps maps

Hi there,
Could anyone tell me what are the best free and paid iphone 3G MMORPG games? And please tell me some positive and negative things in the games.
I didn't know where i could ask this so, i came here to apple forum, because i have subsribed to internet on iphone today. This topic doesn't have anything illegal.
Another thing, does anyone knows if using gps maps through 3g internet, spends a lot of internet trafic? today i've used gps maps for about 12km and it spend me 80kb of trafic. Is this possible? because someone told me that iphone gps spend a lot, but really lot internet trafic. I didn't used sattelite view.

The sattelite view uses far more data, of course - because of the photography it has to download. But the regular map is still a bitmapped image that has to be updated. It's not a massive amount of data, but not insignificant either.

Similar Messages

  • I have the iPhone 5C and have question about he Nike IPOD app. It keeps telling me to move around to set up the sensor to start timing my workout. I went on a 20 minute walk and it still did not set the sensor. Help is needed.

    I have the IPHONE 5C and am having trouble with the app Nike + IPOD.  I go to timed workouts and select 20 minutes and the select playlist and it give me the workout section to start my timed workout.  It will say walk around to activate your sensor.  Well, I walked 20 minutes last nigth & it it still was telling me to activate my sensor.  I was able to still enjoy listening to the music I have on this phone, but frustrated with this silly voice telling me to walk around to activate my sensor.
    Have anyone out there had this frustrating problem.??

    I used to use an iPod Touch and the sensor on my non-Nike running shoes. I bought a little key pouch that fastened to my laces and stuck it in there. It worked find.
    However, with an iPhone, you don't need a sensor. Download the Nike+ Running app from the App Store (or Runmeter or Endomondo or Runtastic). The phone has built in GPS and an accelerometer. It doesn't need the foot sensor like the iPod Touch. You can use any shoes you want. Or no shoes!

  • Compiled Error in Xcode for iphone game and other questions

    Dear all,
    Hi, I am a newbie of xcode and objective-c and I have a few questions regarding to the code sample of a game attached below. It is written in objective C, Xcode for iphone4 simulator. It is part of the code of 'ball bounce against brick" game. Instead of creating the image by IB, the code supposes to create (programmatically) 5 X 4 bricks using 4 different kinds of bricks pictures (bricktype1.png...). I have the bricks defined in .h file properly and method written in .m.
    My questions are for the following code:
    - (void)initializeBricks
    brickTypes[0] = @"bricktype1.png";
    brickTypes[1] = @"bricktype2.png";
    brickTypes[2] = @"bricktype3.png";
    brickTypes[3] = @"bricktype4.png";
    int count = 0;`
    for (int y = 0; y < BRICKS_HEIGHT; y++)
    for (int x = 0; x < BRICKS_WIDTH; x++)
    - Line1 UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]];
    - Line2 bricks[x][y] = [[[UIImageView alloc] initWithImage:image] autorelease];
    - Line3 CGRect newFrame = bricks[x][y].frame;
    - Line4 newFrame.origin = CGPointMake(x * 64, (y * 40) + 50);
    - Line5 bricks[x][y].frame = newFrame;
    - Line6 [self.view addSubview:bricks[x][y]]
    1) When it is compiled, error "ImageCache undeclared" in Line 1. But I have already added the png to the project. What is the problem and how to fix it? (If possible, please suggest code and explain what it does and where to put it.)
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    For instance, returns one of the file name bricktype1.png to the image object? If true, what is the max value of "count", ends at 5? (as X increments 5 times for each Y). But then "count" will exceed the max 'index value' of brickTypes which is 3!
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    Thanks
    North

    Hi North -
    macbie wrote:
    1) When it is compiled, error "ImageCache undeclared" in Line 1. ...
    UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]]; // Line 1
    The compiler is telling you it doesn't know what ImageCache refers to. Is ImageCache the name of a custom class? In that case you may have omitted #import "ImageCache.h". Else if ImageCache refers to an instance of some class, where is that declaration made? I can't tell you how to code the missing piece(s) because I can't guess the answers to these questions.
    Btw, if the png file images were already the correct size, it looks like you could substitute this for Line 1:
    UIImage *image = [UIImage imageNamed:brickTypes[count++ % 4]]; // Line 1
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    Though you don't show the declaration of brickTypes, it appears to be a "C" array of NSString object pointers. Thus brickTypes[0] is the first string, and brickTypes[3] is the last string.
    The expression (count++ % 4) does two things. Firstly, the trailing ++ operator means the variable 'count' will be incremented as soon as the current expression is evaluated. Thus 'count' is zero (its initial value) the first time through the inner loop, its value is one the second time, and two the third time. The following two code blocks do exactly the same thing::
    int index = 0;
    NSString *filename = brickTypes[index++];
    int index = 0;
    NSString *filename = brickTypes[index];
    index = index + 1;
    The percent sign is the "modulus operator" so x%4 means "x modulo 4", which evaluates to the remainder after x is divided by 4. If x starts at 0, and is incremented once everytime through a loop, we'll get the following sequence of values for x%4: 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, ...
    So repeated evaluation of (brickTypes[count++ % 4]) produces the sequence: @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", ...
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    Line 2 allocs an object of type UIImageView and specifies the data at 'image' as the picture to be displayed by the new object. Since we immediately assign the address of the new UIImageView object to an element of the 'bricks' array, that address isn't stored in any named variable.
    The new UIImageView object is not associated with the name of the png file from which its picture originated. In fact the UIImage object which inited the UIImageView object is also not associated with that png filename. In other words, once a UIImage object is initialized from the contents of an image file, it's not possible to obtain the name of that file from the UIImage object. Note when you add a png media object to a UIImageView object in IB, the filename of the png resource will be retained and used to identify the image view object. But AFAIK, unless you explicitly save it somewhere in your code, that filename will not be available at run time.
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    In Line 2 we've set the current element of 'bricks' to the address of a new UIImageView object which will display one of the 4 brick types. By default, the frame of a UIImageView object is set to the size of the image which initialized it. So after Line 2, we know that frame.size for the current array element is correct (assuming the image size of the original png file was what we want to display, or assuming that the purpose of [ImageCache loadImage:...] is to adjust the png size).
    Then in Line 3, we set the rectangle named newFrame to the frame of the current array element, i.e. to the frame of the UIImageView object whose address is stored in the current array element. So now we have a rectangle whose size (width, height) is correct for the image to be displayed. But where will this rectangle be placed on the superview? The placement of this rectangle is determined by its origin.
    Line 4 computes the origin we want. Now we have a rectangle with both the correct size and the correct origin.
    Line 5 sets the frame of the new UIImageView object to the rectangle we constructed in Lines 3 and 4. When that object is then added to the superview in Line 6, it will display an image of the correct size at the correct position.
    - Ray

  • I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.

    I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.  Thanks

    sandyzotz wrote:
    Other wise, I probably best return for a refund and get a Samsung.
    Unlikely.  Based on the complete lack of detail of the issue provided it is entirely possible the same issue would occur.
    Unless and until the user provides some actual details of the problem, there is nothing the indicate that the issue is with the iPhone.

  • Hi,  I would like to ask you a question. a month ago I bought a battery case for iPhone 5 and it worked properly until I installed iOS 7. From that day iphone is operating normally, but when the battery is empty, unfortunately I can not charge additionall

    Hi,
    I would like to ask you a question.
    a month ago I bought a battery case for iPhone 5 and it worked properly until I installed iOS 7. From that day my iphone is operating normally, BUT when the battery is empty, unfortunately I can not charge additionally my iphone with the "extra battery case".
    Does that mean that you did not even create a new software that supports additional battery case or it is something else?
    I need your help!!,
    Thank you in advance.
    Sincerely,
    VK

    The Mophie Air is a good battery case, but doesn't offer the protection she's looking for. I suggest sticking to the Lifeproof, the iPhone has a very good battery (2-3 days moderate usage for me).
    To your 2nd to last paragraph, that is false. Verizon is allowing exisiting customers to keep Unlimited Data - but will lose it once they use a subsidized upgrade. So if you buy a 4S (or LTE device for example) outright, you will keep unlimited data. Mobile hotspot may use up a bit of data, but it is a separate add-on/feature. The new Family Share plans may change that, so it's one giant center of data all devices use.

  • Wireless Design - Best Practices for Data, Voice, and LBS

    Hi,
    I am currently in the process of designing a WLAN for a new hospital and I am getting some push back from my sales team.  The requirements of the WLAN are data, voice, and location based services (RFID for medical equipment) ... needs to be 2.4 GHz for Guest and some apps/clients but primarily 5 GHz for most of the clients ... lastly needs to be N compatible for future use.
    So, I did a predictive design with 1252's on the perimeter with 2.4 and 5 GHz patch antennas and 1142's in the middle to fill gaps ... I also scoped out 2 5508 for redundancy .... total design with -65 at my edges was 169.  However, this is getting push back because of several cost issues ....
    1. The bundle that Cisco offers for 5 100 AP license 5508 WLC is cheaper than buying 2 250 AP licenses WLC's ... which doesn't make any sense to me because I think 5 devices is over kill
    2. The sales engineer is concerned about the power issues with the 1252's ... customer would rather not use power injectors ... and although they would have 6500's at there core ... they would only have basic switches in their IDF's so I wasn't sure which POE Switches would be able to handle 1252 but cost was an issue there as well
    So, for my understanding when you are doing a WLAN design for LBS it's always best to have APs or antennas on the perimeter for better triangulation ... it makes more sense to me to do that with patch instead of Omni's ... however my sales engineer wants to use all 1142's ... so my question is what are the pro and cons behind using all Omni's or using Patch and Omni's?
    Furthermore, if anyone has any documentation supporting why I would not use all Omni's that would be great because all the articles I have read on LBS just state that placement of APs is critical but doesn't give no specifics on whether it's a good practice to place them on the perimeter using a specific type of antenna or what.
    Thanks in advance for you help and any ideas about this design!!!

    1.  The 5508 is expensive because it's alot faster than the 4400 plus there are some features exclusive to the 5508 such as OfficeExtend.  As the old network design adage goes:  Your design can be done correctly, cheap or fast.  Choose two.
    2.  The 1250 requires 19.5w of power to enable FULL MCS rates to both radios.  Only the 3560E, 3750E or the Sup720 is capable of supporting that.  Upgrading the IOS of the 1250 to 12.4(10b)JDA3 will allow the AP to operate both radios at 15.4w BUT at a lower MCS rates.  Correct placement of the AP and the correct use of the antennaes will also help in the signal distribution.
    3.  Patch antennaes are mostly directional.  The 1140 is onmi-directional BUT the signal strength is not as powrful as the 1250 at full power.  The AIR-ANT2451NV is an omni-directional patch designed for the 1250.
    Cisco Aironet Antennas and Accessories Reference Guide
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/product_data_sheet09186a008008883b.html
    Cisco Aironet 2.4 GHz and 5 GHz Antennas and Accessories
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/product_data_sheet09186a008022b11b.html
    Some of the new patch antennaes for the 1250
    Cisco Aironet Dual Band MIMO Low Profile Ceiling Mount Antenna (AIR-ANT2451NV-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant2451nv.pdf
    Cisco Aironet Very Short 5-GHz Omnidirectional Antenna (AIR-ANT5135SDW-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant5135sdw.pdf
    Cisco Aironet Very Short 2.4-GHz Omnidirectional Antenna (AIR-ANT2422SDW-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant2422sdw.pdf
    Cisco Aironet 5-dBi Diversity Omnidirectional Antenna (AIR-ANT2452V-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant2452v.pdf
    Cisco Aironet 5-GHz MIMO Wall-Mounted Omnidirectional Antenna (AIR-ANT5140NV-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant5140nv.pdf
    Cisco Aironet 5-GHz MIMO 6-dBi Patch Antenna (AIR-ANT5160NP-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant5160np.pdf
    Cisco Aironet 2.4-GHz MIMO Wall-Mounted Omnidirectional Antenna (AIR-ANT2450NV-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant2450nv.pdf
    Cisco Aironet 2.4-GHz MIMO 6-dBi Patch Antenna (AIR-ANT2460NP-R)
    http://www.cisco.com/en/US/prod/collateral/wireless/ps7183/ps469/data_sheet_ant2460np.pdf

  • Which is the best iOS for iPhone 3G? I am currently on 3.1.3 !

    Which is the best iOS for iPhone 3G?
    Should i update it to the latest 4.2.1 or let it be on my current firmware 3.1.3?
    I have heard that 3G is best on 3.1.3?
    Comment?

    If I may, I agree that version 3.1.3 is the best for the iPhone 3G, however, I am currently travelling in Europe and I have a SIM card from a local mobile company. I discovered the hard way that there is an option missing: Settings > General > Network > Cellular Data (on/off). This option is not present in iOS 3.1.3. So basically, you disable 3G but it is impossible to block EDGE, and your phone will automatically revert to it if 3G is not available, and you will occur cellular data fees anyway.
    I am sure of what I am saying because with the local service I use, I have unlimited data for $4 per day, but it is debited as soon as I consume one byte of data, then it is free until midnight the same day. Event if I have set Enable 3G = off, Data Roaming = off, for two days in a row, I was still charged the $4 a day because the Cellular Data was not off!
    I compared with my wife's iPhone 3GS with iOS 5.1, there is the three options, Enable 3G (on/off), Data Roaming (on/off), Cellular Data (on/off). The option to turn it off simply doesn't exists on iOS 3.1.3!
    With some research, I found that it is possible to block it anyway if you change your APN (Access Point Name) to an invalid setting. The easiest way to do this is to connect to the Internet using WiFi, then access this web site with Safari: http://unlockit.co.nz/ (from your iPhone).
    This online tool allows you to change your APN, it is very useful when you travel abroad and you use local SIMs. On the first screen press Continue, on the second screen press Custom APN to create an APN for a local mobile company, or press Disable Data (FakeAPN) to disable 3G and Edge for good. When creating a Custom APN, you will be asked to choose a Country and a Provider, then press Create Profile. Then, either way, press Install and "Install Now" or "Replace", then press Done. This will add two things to your phone: first, an app-like icon for quick access to the website http://unlockit.co.nz/, second, a new menu in Settings > General, labelled "Profile", that contains your new APN. Note that it is possible to add several profile information, and some may conflict with each other. Remove those you don't need. Don't remove them if you are not sure!
    I hope this works for you!

  • Hello.what is the best converter for iPhone(for converting variety of file formats to mp3)?

    hello.what is the best converter for iPhone(for converting variety of file formats to mp3)?

    the way the total video convert works is really easy you put the song in that you want to convert you tell it to convert into mp3 format and stay the same quality
    Message was edited by: Robert1986nb

  • What's the best guess for iphone 5 delivery?

    What's the best guess for iphone 5 delivery?

    There seems to be a lot of confusion on when everyone will actually receive the iPhone 5. Pre-orders for new devices have approximate delivery dates and are never official. For an example, Dave pre-ordered an iPhone 5 on 09/15 but there is still a possibility the device will be delivered to the address by 09/21. I've seen this happen many times. Here are the delivery dates for iPhone 5 pre-orders:
    Order by           Deliver by
    9/14 by 9am       9/21
    9/14 by 1pm       9/26
    9/14 after 1pm    9/28
    9/15 - 9/18         10/5
    EST****

  • Media query for iPhone 4s and iPhone 5

    What is the Media Query for iPhone 4s and iPhone 5 in landscape and portrait mode

    This is a tech support forum.  For developer and coding questions, post in the Dev forums

  • What is the latest iOS for iPhone 3GS and will there be another update

    What is the latest iOS for iPhone 3GS and will there be another update or is it iOS 6.1.3 and no more

    The 3GS is not listed in the supported list for iOS7. Unless Apple comes out with a major bug fix, 6.1.3 will likely be the last update for it.

  • I want to add a solar charger for iPhone 5 and iPad to my emergency kit. Are there recommendations for compatible solar products?

    I want to add a solar charger for iPhone 5 and iPad to my emergency kit. Are there recommendations for compatible solar products?

    If you are seldom in a Wi-Fi Network Area, then you can turn off Wi-Fi until you knowingly are in such a Network Area.  You can go through your Applications where you don't really need to know the instant an Update is available and turn off the push update notifications.  You can turn down the screen brightness.  You can set the sleep cycle to 1-min.  You could set your email to check for new messages every 30-min. rather than less than 1 min.  Just some of many steps available.

  • I've bought headphones for iphone 4g and want to use them in my ipod 4g. When i want to use pilot it don"t work. What should i do ?

    I've bought headphones for iphone 4g and want to use them in my ipod 4g. When i want to use pilot it don"t work. What should i do ?

    If you have an Apple store nearby you can make an appointment at their Genius Bar.
    Apple Retail Store - Genius Bar
    You can also try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device

  • Whats the best software for photo editing and creating product catalogues that can be saved as PDF's

    Whats the best software for photo editing and creating product catalogues that can be saved as PDF's

    You are asking two different questiions:
    1. What's a good photo editor? Answer to that here is probably obvious.
    2. What's a good desktop publishing/page layout program for creating PDF files for production? Answer, not PSE. It's a photo editor, not a page layout program.

  • Genuine Leather case for iPhone 6 and iPhone 6 plus

    Hi, I'm looking for premium quality leather case for iPhone 6 and iPhone 6 plus. I don't want PU but genuine quality. Still would like not too expensive. All that I found so far are around hundred bucks. Could someone advice of brands for that category? Or personal experience ... Thanks

    Have a look at cableJive they make the dockStubz which might do what you are looking for

Maybe you are looking for

  • How to fix my slow, freezing Macbook Pro (2012 version)?

    Hi! I bought my macbook pro in Jan 2013, it is the Mid 2012 version. Since yesterday, it is running super slow, and freezes constantly. I've deleted a lot of files from my computer and transferred them to a usb to clear out some place on the disk. St

  • Sending a photo heavy PDF for book printing on a web press.  Convert photo in photoshop first or Acrobat 11?

    Hi,      The printing company for our photo book on Loons, uses roll fed web presses.  They have asked for a pdf set to X-1a. First soft proof was light and washed out.  Printer had us increase saturation and contrast.  Second proof all our blue wate

  • Disc will no longer burn - QMaster error

    Yesterday (and on many other days) I burned a Blu-ray Disc out of FCP7 (using Share). Today when I follow the exact same procedure as I always do, I get the "Share Failure. An Internal error occurred: Apple Qmaster File Agent not found." error messag

  • SQL Developer question

    Hi Folks I am using SQL Developer tool. I have a procedure with compilation errors so i can see that procedure with red X mark in SQL Developer tool. When am clicking on the procedure it is going to the editor there i can see "code"."grants","depende

  • Can you use a self signed certificate on an external Edge Server interface?

    Hi, I have a small lab deployment for evaluation purposes. The Lync FE server works great for internal users. I have now added an Edge server. For the internal interface, I have a self signed certificate from our internal CA. (no problem there) For t