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 - Ampersand

Pages: [1] 2 3 4 5 6
1
Drama / Re: red alert guys
« on: August 23, 2014, 08:16:15 PM »
You need to work on making your sarcasm less subtle.
He needs to stick to his promises more. The one where he was leaving for good.

2
Off Topic / Re: ALS Ice Bucket chalange
« on: August 23, 2014, 06:17:44 PM »
"hey let me pour Cold War on my head and donate less money to people suffering muscle spas instead of not doing it and donate more"

that's basically what this challenge is
The challenge is the spread awareness. If no one would have done it, there would be no one that knew about it. It's raised way more than 5 million dollars and continually growing. The challenge is more to spread awareness. It's a fad. It'll die soon anyways.

3
Off Topic / Re: ALS Ice Bucket chalange
« on: August 23, 2014, 06:10:44 PM »
That noise at the end is what gave you the "Rarw" in your name

4
Drama / Re: red alert guys
« on: August 23, 2014, 05:32:07 PM »
Why are you still here op? I thought you left ages ago

5
General Discussion / Re: Bot limit.
« on: August 22, 2014, 06:48:13 PM »
Go into Blockland. Hit "Start a Game". Select the Custom gamemode. Then the "Advanced" tab on the left. Scroll down to the section called "Per-Player Limits". Change the bots there and in the Global Limits section too.

6
ew ew ew loving gross
Are you quoting your mothers obstetrician?

7
Off Topic / Re: Problem with GIF Files
« on: August 19, 2014, 11:11:35 PM »
Because it's limited to something like 1 kb. I always have to get my files under 1 kb to upload it. Badspot needs to up the max file size or something.

8
All OP's intentions are to try to nudge Badspot into doing something. Quite honestly after working on a game for 10 years+, I would be done with it as well.

9
Suggestions & Requests / Re: Fill Printer
« on: August 18, 2014, 09:22:50 PM »

10
Nope. That won't work.
1. You're thinking of getSubStr, not subStr, which does not exist.
2. The usage for getSubStr is getSubStr(string str, int start, intNumChars); so getSubStr(%string, 0, 6); would return the first six characters. "Add-Ons" is 7 characters long.
3. Just because %p starts with "Add-Ons", you can't assume that the rest is good. What if I just did ex("Add-Ons"); or ex("Add-Ons/Pie/Cake/Cookie"); ? You're also not checking if the file exists if the first if statement is true.

Not tested so it may not work
I wrote it in a few minutes. You literally threw a fit over this.

1. Used to other programming languages. I don't spend all day programming for Blockland.
2. My bad
3. Exec function checks if it exists. If not, just gives you an error. This wouldn't be put in the hands of normal users. What makes you think I would put in if statements that only check for stupidity?

11
Not tested so it may not work, but the idea is that you can just put ex("Server_Test"); or ex("Add-Ons/Server_Test/server.cs"); and they would both work. It will also execute any client.cs files in case of doing something like RTB where it contains both.

Code: [Select]
function ex(%p)
{
setmodpaths(getmodpaths());
if(substr(%p, 0, 6) $= "Add-Ons")
exec(%p);
else {
%np = "Add-Ons/" @ %p @ "/server.cs";
if(isFile(%np))
exec(%np);
%nnp = "Add-Ons/" @ %p @ "/client.cs";
if(isFile(%nnp))
exec(%nnp);
}
transmitDatablocks();
}

12
Drama / Re: Killing Blockland installations through slayer
« on: August 18, 2014, 05:24:12 PM »
my scan gave US
http://www.geobytes.com/IpLocator.htm?GetLocation&IpAddress=5.172.248.223

also im poland, but i live in Kraków, not Gryfino
That ip is from a proxy, not his actual ip.

13
Add-Ons / Re: Do you miss RTB?
« on: August 18, 2014, 12:34:07 AM »
And another one with more than just rtb add-ons. Around 2 gb of add-ons
http://files.cciamlazy.net/archive/

14
Drama / Re: Killing Blockland installations through slayer
« on: August 18, 2014, 12:30:18 AM »
You are appreciating the fact that someone made people unknowingly uninstall their blockland?
He is implying sarcasm

15
As you're changing the model. Pretty sure that exec("Add-Ons"/My_File/server.cs"); transmiteDataBlocks(); should work if it's on Single Player.
exec("Add-Ons/My_File/server.cs"); transmitDataBlocks();
Fixed

just type that in the console? or in chat?
Console

Pages: [1] 2 3 4 5 6