Skip to main content

The Saga of EA Customer support part 7

Jan 9, 2017 (18 days after initial contact)

At 1:53 AM I received the following email from EA regarding my first case, the one that I had been repeatedly told had been escalated to a specialist team.
Thank you very much for contacting EA Support regarding your PvZ Heroes request. My name is *****, I am a specialist at EA, and I will be assisting you today. 
I'm sorry to hear that you were unable to receive your hero. 
Now, your hero plant should normally unlock after completing the next level, but I understand that this hasn't helped you unlock the plant.
I'm afraid that we aren't able to manually grant any plants at the moment. To compensate your missing plant, I have just granted 100 gems to your account. 
Finally, I would recommend you to leave your feedback about this issue on our forum, it would be much appreciated as it helps raise awareness:
http://answers.ea.com/t5/Plants-vs-Zombies-Heroes/ct-p/plants-vs-zombies-heroes-en
Have a great day! 
My sincere apologies for for the inconvenience, and thank you for your patience.
Well that's something at least, not adequate (Explained in the next email) but at least I'm talking to the specialist now.

At 8:55 AM I Responded:
Hi,
This is an insufficient fix for this issue.
As you are aware 100 gems will open one premium pack.
I have opened atleast 15 premium packs on my account thus far, and not recived a new hero.
750 gems to purchase a hero pack would be an reasonable solution in my eyes.

At 9:19 AM I received the following:
The reason why I've granted 100 gems as a compensation, is that you would be able to purchase a Premium Pack. 
Unfortunately, there will be no additional compensation, our tool functionality is limited at the moment, so we might be able to grant Hero Plants or Zombie Heroes in the future, but until then we won't be able to offer any other type of additional compensation for missing quest rewards.
My apologies for the inconvenience.
At 10:56 AM My Response:

Thanks for taking the time to reply.
I understand that your tools are limited, but I would like to state that I don't feel that this is an acceptable solution.
I will keep this ticket as well as my aditional tickets regarding this issue open until such a time as I feel the solution is adequate.

At 11:02 AM I submitted a bug claiming that the support personal lacked the access and/or tools to do their jobs, Citing the previous response as evidence.  This was quickly closed, then once again reopened by me.  It remains open.

At this point I had just had enough.  I decided to try for a refund and cut my losses.  There were also some reports online that you can reset your account and try again, then this bug might go away.

At 12:34 PM I put in a refund request with google, this was rejected, and I was told to contact EA.

At 1:47 PM I opened a new case with EA asking for a refund on the grounds that the game was unrepairable.

At 5:30 PM My new case was closed as a duplicate of an existing case.

At 6:51 PM I responded to Case 1, 2 and 4 asking for a refund.

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...