You are viewing our Forum Archives. To view or take place in current topics click here.
FIFA 13 Autobuyer Programming Help
Posted:

FIFA 13 Autobuyer Programming HelpPosted:

Eamon17
  • Challenger
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
OK so I got all of the coding from mousey on github. It is all in .php. After countless hours of googling and reading I finally found out I need to essentially use it in html. So I made a useless website with Filezilla, 000webhost and Wordpress just to see if anything happens. But the problem im having is how to 'run' the .php code and where to put it in the html. There are hundreds of .php files in my public_html folder and where the hell would i put them. Also how would i run them in order of one another. So firstly would be logging in to the web app, then the hash file, followed by the trader and searcher or whatever. But id rather know how to do the first only cause then the rest would be easy enough to do. Any helpers? thanks
#2. Posted:
iyop45
  • Prospect
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
download xampp:
[ Register or Signin to view external links. ]

Put all the .php files inside a folder and paste that folder into your htdocs folder at:

C:\xampp\htdocs

Then simply execute the files accordingly on your server. So, start the apache and go to:
[ Register or Signin to view external links. ]


*Usually there will be a main file of which includes all the others and so I would assume you'd need to execute that one.
#3. Posted:
Eamon17
  • Challenger
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
iyop45 wrote download xampp:
[ Register or Signin to view external links. ]

Put all the .php files inside a folder and paste that folder into your htdocs folder at:

C:\xampp\htdocs

Then simply execute the files accordingly on your server. So, start the apache and go to:
[ Register or Signin to view external links. ]


*Usually there will be a main file of which includes all the others and so I would assume you'd need to execute that one.


I have done all of that and everything is working fine. I created a folder called fifa and added my 4 .php files to it. I typed in the URL localhost/fifa and it brings up the 4 files on top of one another but i cant essentially execute them. They simply bring up a blank page. Could it be that the code is wrong.? Thanks.
#4. Posted:
iyop45
  • Prospect
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
You really can't work with large php projects with little to no experience with php. You should at least grasp a basic understanding of the language prior as you'll have no idea of what's happening and no way of debugging scripts.

Basically when a php file is called from a server it will be executed, so if you're calling a .php file on your localhost it IS being executed however, in your case the script simply doesn't output anything.

I can't really guess what's going wrong but, you really are diving in at the deep end, your best bet is to contact the developer if you have any problems.
#5. Posted:
Eamon17
  • Challenger
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
iyop45 wrote You really can't work with large php projects with little to no experience with php. You should at least grasp a basic understanding of the language prior as you'll have no idea of what's happening and no way of debugging scripts.

Basically when a php file is called from a server it will be executed, so if you're calling a .php file on your localhost it IS being executed however, in your case the script simply doesn't output anything.

I can't really guess what's going wrong but, you really are diving in at the deep end, your best bet is to contact the developer if you have any problems.


Yeah I dont really get much of it, but some of it is coming together, bits and pieces to be honest. Ill just do one file at a time and create an error.php file which will hopefully help me identify the errors. And I do have a second set of coding which ill try now. If they dont work, well lets just say ill have my hands full for the coming weeks. Also if it was to work, getting it to work in say FIFA 14 would just involve a little manipulation of code wouldnt it?.
#6. Posted:
iyop45
  • Prospect
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
I have a feeling auto-bidders and scripts of this nature usually rely on a database, so I honestly can say if you don't know what you're doing you won't get anywhere with it. The script would not have been distributed if it simply didn't work so I assume the errors are due to your intervention or lack of such. There must be some tutorials of how to get the system working and as for whether or not it'll work on fifa 14 I wouldn't know. I don't have the script so I don't know what it does and what it relies on.
#7. Posted:
Eamon17
  • Challenger
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
iyop45 wrote I have a feeling auto-bidders and scripts of this nature usually rely on a database, so I honestly can say if you don't know what you're doing you won't get anywhere with it. The script would not have been distributed if it simply didn't work so I assume the errors are due to your intervention or lack of such. There must be some tutorials of how to get the system working and as for whether or not it'll work on fifa 14 I wouldn't know. I don't have the script so I don't know what it does and what it relies on.


If ur curious [ Register or Signin to view external links. ] ;)
#8. Posted:
iyop45
  • Prospect
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
You do realize the connector.php file contains comments for your login credentials, remove the comments and change them for your credentials accordingly.

      //EA Web App Username & Password
      //$user = "[email protected]";
      //$password = "eaPassword";
      //Secret Question Hash Value
      //$hash = "d2d59e74d02d877ef6ae94bf868c18e0";


I can't babysit you through all of it but surely you must of at least done that? If you don't have any idea of how the script is going to work how do you expect it to work? I scanned through a couple of the files and lots of the echo statements are commented out. If you uncomment these they may help you identify any further issues but, I really don't have time to do this all for you.
#9. Posted:
Eamon17
  • Challenger
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Status: Offline
Joined: Jun 14, 201113Year Member
Posts: 116
Reputation Power: 4
Yeah I totally agree with u, i wouldnt go through all that rubbish either. I just thought since they are essentially just comments I could ignore them. But now i see that they are actually used for defining user, pass..etc.. Ill go through it now. thanks for that.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.