Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jes00

Pages: 1 ... 283 284 285 286 287 [288] 289 290 291 292 293 ... 464
4306
Add-Ons / Re: Printable Water Bricks (by jes00)
« on: May 06, 2012, 09:09:34 PM »
Locking this topic now because RTB has approved it.

4307
Modification Help / Re: Revenge of the TCP object
« on: May 06, 2012, 09:06:04 PM »
It's called RTB, you might have heard of it.
I want it to do it this way if they do not have RTB. Notice how it does not run the check if they have RTB.

4308
Modification Help / Re: Revenge of the TCP object
« on: May 06, 2012, 03:09:56 PM »
Well hey look I provide a free service which does exactly this, so I guess that!
Where?

4309
Modification Help / Re: Revenge of the TCP object
« on: May 06, 2012, 03:05:11 PM »
You should really stop being so cheap and trying to host things from a Dropbox. They'll see the traffic and disable your account - it's against the terms of their service.
Then what else would I use?

4310
Modification Help / Re: Revenge of the TCP object
« on: May 06, 2012, 06:38:08 AM »
That is a valid request.
Now one of the messages boxes comes up saying "Unable to connect to the online version information."

4312
Modification Help / Re: Revenge of the TCP object
« on: May 06, 2012, 06:27:01 AM »
Actually that wasn't even the first problem.

   %req = "/get/ColorSetMaker_Version.txt?w=1fc5f9ab";

Not a valid request
Is this? %req = "GET /get/ColorSetMaker_Version.txt?w=1fc5f9ab HTTP/1.1\r\n";

4313
Modification Help / Re: Revenge of the TCP object
« on: May 05, 2012, 06:33:50 PM »
\r\n for newlines in the HTTP protocol headers
What?

4314
Suggestions & Requests / Re: Centaur Player-Type/Bot
« on: May 05, 2012, 06:33:09 PM »
i spat out my water i was dirnking when I read this
Why?

4315
Modification Help / Revenge of the TCP object [Solved]
« on: May 05, 2012, 06:32:11 PM »
So I made this TCP object but it's not going to the url I want or something.
Code: [Select]
$ColorSetMaker::Version = "0";

function ColorSetMaker_VersionCheck()
{
if(isFile("./RTBinfo.txt") && (isFile("add-ons/System_ReturnToBlockland/client.cs")))
{
return;
}

if(isObject(ColorSetMaker_Downloader))
ColorSetMaker_Downloader.delete();

new TCPObject(ColorSetMaker_Downloader);

ColorSetMaker_Downloader.connect("dl-web.dropbox.com:80");
}

function ColorSetMaker_Downloader::onConnected(%this)
{
//https://dl-web.dropbox.com/get/ColorSetMaker_Version.txt?w=1fc5f9ab

%req = "/get/ColorSetMaker_Version.txt?w=1fc5f9ab";

//%req = "GET/get/ColorSetMaker_Version.txt?w=1fc5f9ab" SPC "HTTP/1.0\nHost: dl-web.dropbox.com\n\n";

%this.send(%req);
}

function ColorSetMaker_Downloader::onConnectFailed(%this)
{
MessageBoxOK("Attention!", "Unable to connect to the online version information.");
}

function ColorSetMaker_Downloader::onDisconnect(%this)
{
if(!$ColorSetMaker_Connected)
{
MessageBoxOK("Attention!", "Unable to connect to the online version information.");
}

else
{
$ColorSetMaker_Connected = "";
}
}

function ColorSetMaker_Downloader::onLine(%this, %line)
{
echo("\c21:" SPC getSubStr(getWord(%line, 6), 0, 6));

echo("\c22:" SPC getSubStr(getWord(%line, 6), 0, 1));

echo("\c23:" SPC %this);

echo("\c24:" SPC %line);


if(getSubStr(getWord(%line, 6), 0, 6) == $ColorSetMaker::Version)
{
$ColorSetMaker_connected = 1;

ColorSetMaker_Downloader.disconnect();

ColorSetMaker_VersionResult(false);
}

else
{
if(getSubStr(getWord(%line, 6), 0, 6) !$= "1 BETA")
{
$ColorSetMaker_AvailableVersion = "1 BETA";
}

else
{
$ColorSetMaker_AvailableVersion = getSubStr(getWord(%line, 6), 0, 1);
}

ColorSetMaker_Downloader.disconnect();

ColorSetMaker_BersionResult(true);
}
}

function ColorSetMaker_VersionResult(%x)
{
if(%x)
{
MessageBoxOk("Good News!", "Your Color Set Maker mod is up to date.");
}

else
{
MessageBoxOK("Attention!", "There is a more current version of your Color Set Maker mod.\n\nYour Version:" SPC $ColorSetMaker::Version @ "\n\nAvailable: " @ $ColorSetMaker_AvailableVersion);
}
}

It echos the following in the console:
1:
2:
3: 8366
4:
1:
2:
3: 8366
4: <html>
1:
2:
3: 8366
4: <head><title>Dropbox - 4xx</title>
1:
2:
3: 8366
4: <link href="https://www.dropbox.com/static/css/main.css" rel="stylesheet" type="text/css">
1:
2:
3: 8366
4: <link rel="shortcut icon" href="/static/images/favicon.ico"/>
1:
2:
3: 8366
4: </head>
1:
2:
3: 8366
4: <body style="background-color:#fff">
1:
2:
3: 8366
4: <br/><br/>
1:
2:
3: 8366
4: <div align="center">
1:
2:
3: 8366
4: <table><tr><td width="600px">
1:
2:
3: 8366
4: <center><img id="errorimage" src="/static/images/psychobox.png"/></center>
1:
2:
3: 8366
4: <div id="errorbox">
1: you're
2: y
3: 8366
4: <h1>Error (4xx)</h1>We can't find the page you're looking for. Check out our <a href="https://www.dropbox.com/help">Help Center</a> and <a href="http://forums.dropbox.com">forums</a> for help, or head back to <a href="https://www.dropbox.com/home">home</a>.
1:
2:
3: 8366
4: </div>
1:
2:
3: 8366
4: </td></tr></table>
1:
2:
3: 8366
4: </div>
1:
2:
3: 8366
4:
1:
2:
3: 8366
4: <script type="text/javascript" src="/static/javascript/external/dropbox-mini.js"></script>
1:
2:
3: 8366
4: <script>

4316
Suggestions & Requests / Re: Centaur Player-Type/Bot
« on: May 05, 2012, 04:19:31 PM »
Two types, one ridable and one not. Or just a server command to toggle wether people can ride you or not.

4317
Add-Ons / Re: Printable Water Bricks (by jes00)
« on: May 05, 2012, 03:52:54 PM »
http://forum.returntoblockland.com/dlm/viewFailBin.php
"Shouldn't require non-rtb add-ons"
They failed it then because I suggested in the info to use [GSF]Ghost's prints because they look good on them. I re submitted it since then.

4318
General Discussion / Re: Glass' Trench Wars [Official Topic]
« on: May 05, 2012, 02:12:11 PM »
Scores and stats are back. You're welcome.
Welcome back 650 points :P

4319
Add-Ons / Re: Printable Water Bricks (by jes00)
« on: May 05, 2012, 12:35:55 PM »
That feature is included, right?
I do believe believe so, I never thought to test it.

EDIT: I tested it and you can place bricks inside the water bricks.

4320
General Discussion / Re: Glass' Trench Wars [Official Topic]
« on: May 05, 2012, 08:08:14 AM »
Danny Boy said he won't give the save files back unless Glass apologizes.

I find it fun having to earn back my weapons.

Pages: 1 ... 283 284 285 286 287 [288] 289 290 291 292 293 ... 464