What's new

Unplayed accounts

  • Thread starter arussell92
  • Start date
  • Views 1,821
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
as many of you guys are probably already aware any accounts that havent been verified on a console are unable to search for players and it has been like this for the last couple of weeks. I remember seeing something about that this was by accident and they were looking into fixing it, well i was just wondering if anybody has any update on the situation or a work around because i have around 500k on a spare account and with TOTY coming up it would be pointless buying packs because in the current state everything on the account is useless.



P.S the coins are not by using a autobuyer either
 
Didier

Didier

FIFA Franchise
Grizzled Veteran Programmer Chatty Kathy
Messages
2,459
Reaction score
544
Points
345
Sin$
7
I don't think there is anyway around moving coins, but if you have players you could list them up on the trade pile and make trade offers from other accounts?
 
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
I don't think there is anyway around moving coins, but if you have players you could list them up on the trade pile and make trade offers from other accounts?

sadly like an idiot i cant access the account anymore because i used fake emails like a gobshite, just hoping they keep there word and fix it
 
TheBeard

TheBeard

Enthusiast
Messages
1,105
Reaction score
480
Points
165
Sin$
0
lost 5 mil because of this. forgot my PSN details so no way to get into my account on console, hopefully its fixed so i can get the coins out lol.
 
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
I don't think there is anyway around moving coins, but if you have players you could list them up on the trade pile and make trade offers from other accounts?

sadly like an idiot i cant access the account anymore because i used fake emails like a gobshite, just hoping they keep there word and fix it
 
J

josepk54

Enthusiast
Messages
289
Reaction score
63
Points
85
Sin$
7
lost 5 mil because of this. forgot my PSN details so no way to get into my account on console, hopefully its fixed so i can get the coins out lol.
Give me the EA account username/password/sq and i'll transfer them to another account for you, minus my 50% cut of course :wink:
 
MattWidz

MattWidz

Member
Programmer Forum Addict
Messages
2,535
Reaction score
1,119
Points
510
Sin$
0
You can still buy players, just can't search - I'd suggest moving them quick though
 
james143

james143

Getting There
Messages
1,121
Reaction score
866
Points
215
Sin$
7
If it doesn't get 'fixed' feel free to pm me and I'll get them transferred to another account for you for free. It's very easy.

It would mean temporarily giving me the login details to the account & trusting me with your coins but meh, that's up to you. Offer is there if you need it.
 
MattWidz

MattWidz

Member
Programmer Forum Addict
Messages
2,535
Reaction score
1,119
Points
510
Sin$
0
If it doesn't get 'fixed' feel free to pm me and I'll get them transferred to another account for you for free. It's very easy.

It would mean temporarily giving me the login details to the account & trusting me with your coins but meh, that's up to you. Offer is there if you need it.

It's not getting fixed, it was implemented on purpose...
 
james143

james143

Getting There
Messages
1,121
Reaction score
866
Points
215
Sin$
7
It's not getting fixed, it was implemented on purpose...


That's why I put 'fixed'. I don't think for one second they will change it back, I was surprised when they reverted it the first time. :/
 
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
List a player on a working account, use the tradeId from that player to buy it, send a PUT request to /ut/game/fifa14/trade/{tradeId}/bid with the post body {"bid":amount}

thank you will try this, sadly once i figure out how ( im crap with computers)
 
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
MattWidz MattWidz is there anychance you could give me a quick guide please on how to do the PUT request, thanks in advanced
 
Fire30

Fire30

Seasoned Member
Messages
7,222
Reaction score
2,364
Points
635
Sin$
0
yeah, just to make sure i get it through the tamper data tool right
Yeah that will work.

Ok, you could use my library to do it. [Click here to view this link]

You need python 2.7 installed and requests, but after that you could edit the main.py to look like this and it should buy your card.

Code:
from Fifa14Client import LoginManager
from Fifa14Client import WebAppFunctioner
import ConfigParser
from extra import EAHash


def do_main():

	email = '[email protected]'
	password = 'password'
	secret_answer = 'security question answer'
	security_hash = EAHash.EAHashingAlgorithm().EAHash(secret_answer)
	platform = 'xbox' # can be xbox, ps3, pc, ios, or android

	login = LoginManager.LoginManager(email,password,security_hash,platform)

	func = WebAppFunctioner.WebAppFunctioner(login)

	card = Card()
	card.tradeId = 123456789 # put your tradeId here
	
	func.bid(card,5000000)#Buys the card for 5 million coins
 
A

arussell92

Enthusiast
Messages
166
Reaction score
9
Points
70
Sin$
0
Yeah that will work.

Ok, you could use my library to do it. [Click here to view this link]

You need python 2.7 installed and requests, but after that you could edit the main.py to look like this and it should buy your card.

Code:
from Fifa14Client import LoginManager
from Fifa14Client import WebAppFunctioner
import ConfigParser
from extra import EAHash
 
 
def do_main():
 
	email = '[email protected]'
	password = 'password'
	secret_answer = 'security question answer'
	security_hash = EAHash.EAHashingAlgorithm().EAHash(secret_answer)
	platform = 'xbox' # can be xbox, ps3, pc, ios, or android
 
	login = LoginManager.LoginManager(email,password,security_hash,platform)
 
	func = WebAppFunctioner.WebAppFunctioner(login)
 
	card = Card()
	card.tradeId = 123456789 # put your tradeId here
 
	func.bid(card,5000000)#Buys the card for 5 million coins


thanks will try now
 
Top Bottom
Login
Register