I've been trying to figure out how to store a user's data into a database without much knowledge or documentation and surprising enough there's a lot of problems coming up, so I was wondering if anyone know of some good guides on how to store game variables specific to a facebook users in game maker? So far I've been looking at using PHP but I can't figure out how to properly correlate it with Game Maker.
Storing A Facebook User's Game Data Game Maker
160 Views Asked by Ivatrix At
1
There are 1 best solutions below
Related Questions in FACEBOOK
- Facebook Api - Albums/Photos/Comments
- How to get Facebook subscriber count + friend count
- Firebase facebook authentication not working
- Facebook iOS SDK 4 error info.plist
- Why don't any of my facebook share buttons work?
- Can't perform authentication through facebook with Parse
- PlayN and Firefox issues
- How do I stop the facebook send widget from going off the screen?
- Add extended permissions - Facebook
- Pass image, summary, URL to Facebook share button in ASP.NET MVC
- Facebook Open Graph Description in a message length limitation
- Facebook ShareKit image caption not working
- how to display Notification Count in iOS like Facebook
- How to estimate current situation of an old site not created by myself before i launch my new one?
- Facebook Graph API limit publishing to fan page
Related Questions in GML
- Why is Game Maker Studio telling me that my if statement won't work?
- Enemies Overlapping in Game Maker: Studio, How Do I Fix This?
- Parse GML to use in map creation
- Gamemaker Studio android java extension not executing intent
- How to setup views in game maker studio?
- Destroying Instances at the wrong position in Game Maker HTML5 port
- Game Maker Password Verifier
- readOGR cannot read a GML file
- SDO_UTIL.TO_GMLGEOMETRY throws srsname which starts with SDO: in stead of expected EPSG:
- Bad Characters when parsing GML in Java
- CityGML Deserialization Issue
- GML v3 loading with OpenLayers
- why are objects clipping behind each other?
- When I have two orientation quaternions, how do I find the rotation quaternion needed to go from one to the other?
- How to show choice in Game maker with gamepad functionality
Related Questions in GAME-MAKER
- Game Maker: Studio Sound wont play when moving to next room?
- Use image_xscale to slow down speed GameMaker Studio
- Dynamically adding leadbolt ads - Failed to execute 'write' on 'Document'
- floating room is possible on GML?
- Enemies Overlapping in Game Maker: Studio, How Do I Fix This?
- game maker studio:i broke the controls of my player
- How to setup views in game maker studio?
- game maker studio transferring multiple variables to a script
- GameMaker converted game to HTML5, showing huge bugs
- Is there a similar game making software to warcraft's world editor?
- Move an object in a direction
- How to draw a sprite in Game Maker with gradually increasing alpha (opacity)?
- Fast projectiles don't always hit
- 2D Volumetric Lighting Methods?
- url scheme in game maker studio(yoyo games) for android?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can very well use PHP (or some other server sided language, like Node) to open up a webserver. You can then let Game Maker communicate over HTTP(S) with that service.
You will need to do that if you're using Facebook anyway.