[XP]Is an HTTP GET possible in RGSS?

Started by Xolitude, August 18, 2013, 09:09:39 am

Previous topic - Next topic

Xolitude


PhoenixFire

Simply put, yes. But you need to know a bit about RGSS to begin with. Here's a link for you to look through...

Link Here
Quote from: Subsonic_Noise on July 01, 2011, 02:42:19 amNext off, how to create a first person shooter using microsoft excel.

Quote from: Zeriab on September 09, 2011, 02:58:58 pm<Remember when computers had turbo buttons?

Xolitude

Quote from: DigitalSoul on August 18, 2013, 11:05:35 pm
Simply put, yes. But you need to know a bit about RGSS to begin with. Here's a link for you to look through...

Link Here


Thank you! :D

PhoenixFire

You're welcome. Personally, I've never tried it, but after reading through it and browsing what it does, it seems like it should allow you to get done what you're looking to do with GET. I'm intrigued to ask though; Are you making a multiplayer game that uses that method to get server data on other players? Or more simply, are you having the game download content from a game server?
Quote from: Subsonic_Noise on July 01, 2011, 02:42:19 amNext off, how to create a first person shooter using microsoft excel.

Quote from: Zeriab on September 09, 2011, 02:58:58 pm<Remember when computers had turbo buttons?

warkurus

August 26, 2013, 05:16:24 am #4 Last Edit: August 26, 2013, 05:32:18 am by warkurus
Just downloaded the WebKit, but its only for RPG Maker VX :(
I think, in XP one can copy the http.rb script from ruby in the game folder and use
$LOAD_PATH:<<"."
(
$:<<"."
should work, too) first in the (new) script. Now one can use
require 'http' 
or
Kernel.require("http")
in the same script and start writing.