Skip to main content

The Saga of EA Customer support

I am having a heck of a time getting support for the free to play EA title Plants vs Zombies: Heros, so I thought It might be an idea to write it down somewhere in the hope that it can help someone, or  maybe best case get some exposure Here is the saga as best as I can recall it bering in mind that it started on Dec 22, 2 days short of 4 weeks at the time of this writing.  I also got slightly irate, and perhaps irrational during this experience, I'll include all of that as well.

Dec 22, 2016

I experience a bug with the game wherein a quest in the game failed to provide the completion reward.  The quest in question was to play 15 games, the reward was an additional hero for the game, which as you may guess are kind of a big thing in a game called Plants vs Zombies: Heros.  I don't have the initial language I used in the support request, but it was noting inflammatory,

I then did the reasonable thing and opened a support request with the EA help system through the game.  According to the response email from the EA system, this ticket was received on Dec 22, 2016 at 10:41 AM.

At 8:15:19 PM I made my first mistake with this, I purchased the time sensitive Starter pack for CAD $6.99.  In retrospect I'm not sure why I would do that while having an unresolved issue with the game, but I guess I figured that since I was asking for support which ultimately requires an employed human on the other end, the company deserved some compensation for it.  Either way I've leaned my lesson now.

At 11:08 PM I received my first reply from EA support.  Here is the reply in full:

Thank you for contacting Electronic Arts world wide Customer Experience.
My name is ******** and I would assist you with your issue today.
I understand that you have completed the quest but did not receive the plant hero, don't worry we are here to help you.
We're sorry about this but the good news is that we can help fix this for you. Please complete the next level of the game. Once you have completed and won the next level, your reward will appear.
Should you have any further questions regarding this or any other issues, please do not hesitate to let us know. You can also find answers to common questions on our Help Center at "http://help.ea.com".
It's worth noting that this email responce closed the ticket on EA's end, they make note of that in the boiler plate at the end of the contact email.

At first this confused me slightly,  as the word 'Level'  is never used in the game there are missions, quests, leagues, and ranks.  At the time I assumed that given the support persons name that this may have been a language barrier thing, that the correct thing to do was complete the next quest.  In this case it was to complete 25 games and get a new Zombie hero.

That took some time to complete, but it did not solve the issue.

Comments

Popular posts from this blog

8Bitdo NES 30 Pro on linux

This post will go over the setup I had to do to get my   8Bitdo  NES30 Pro controller working on my Arch linux desktop with steam.  This results in the system loading the xboxdrv automatically when the controller is connected, and unloading once finished. Firmware Update The first thing to tackle was the firmware update on the controller,  This may not be needed, but I like to keep my devices up to date. After some googling, I was able to find a program called fwupd  that's able to update the controller via a USB connection.  It's available for Arch in the community repo. The basic syntax of the command is: fwupdmgr get-devices fwupdmgr refresh fwupdmgr get-updatessudo fwupdmgr update The controller will need to be put into 'Firmware update mode'.  Be aware that the final command will also update all eligible firmware on your system, so If you don't want that, please dig into the documentation Bluetooth Connection G...

Craftware 1.17 on Arch Linux -- notes

Craftware a slicer for 3d printers is available for linux here .  It looks pretty good, and is supposedly multi threaded with support for hardware acceleration. I can only find it  as a deb file, and there's nothing in the AUR for it. I tried a few of the common methods for installing debs: debtap While it was able to create a package, upon installing it I got this error loading packages... error: failed to prepare transaction (package architecture is not valid) :: package craftware-1.17.1-1-i686 does not have a valid architecture So.. No good. I tried just extracting the package content, and running the binary: ./craftware: error while loading shared libraries: libomp.so: cannot open shared object file: No such file or directory and yes, it is installed. $ ldconfig -v           libomptarget.so -> libomptarget.so          libomp.so -> libomp.so          libzit...

Dropbox Nov 2018 workaround

So Dropbox is no longer supporting anything besides ext4 on linux as of Nov 7th 2018.  Here's how to work around that WITHOUT superuser permissions. First, create a sparse file of whatever size you'd like for your Dropbox folder. $ truncate -s 5G ~/.Dropbox.img Now we need to format this as ext4, But we want to make sure that we own the created file system, not the default of root. $ mkfs.ext4 -E root_owner=$(id -u $USER):$(id -g $USER) ~/.Dropbox.img Setup the loopback device with our EXT4 image $ udisksctl loop-setup -f ~/.Dropbox.img You may need to mount the device if it hasn't been already: $ udisksctl mount -b $CREATED_LOOP_DEVICE Check where our filesystem is mounted: $ mount | grep Dropbox.img Move any existing data from the previous dropbox folder to the new location: $ mv ~/Dropbox/{.,}* /$MOUNTPOINT/OF/DROPBOX/IMAGE/UUID$ Link our new folder back to the dropbox folder $ ln -s  /$MOUNTPOINT/OF/DROPBOX/IMAGE/UUID$/ ~/Dropbox You can now star...