• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Writing text on Webpage

G

ggiles892

Guest
Using this asset (https://marketplace.yoyogames.com/assets/3539/import_web_texts) you can read text files that are online, what about writing/editing online text files?

For example, a export_web_texts?

I plan on using it for updating players information about other players.

Just an example...

if (keyboard_check_pressed(vk_space))
{
//edit url text file writing updated score
}
 

Yal

šŸ§ *penguin noises*
GMC Elder
You can use http_post_string to send data, so you'd send data to the server and have code on its side handle the files. (It would also let the server check the data to make sure it's valid and sanitized and stuff... editing remote files from the client side is just asking for being hacked)
 
Top