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

Pages: 1 ... 55 56 57 58 59 [60] 61 62 63 64 65 ... 238
886
Add-Ons / Re: Duplorcator, the duplicator replacement (v1.2)
« on: October 10, 2012, 11:40:17 PM »
Cubelands get BuildBot version 3, it includes a client sided duplicator and an event loader, as well as some big interface enhancements and general bug fixes.

887
Add-Ons / Re: NARG: We make stuff
« on: October 10, 2012, 11:36:34 PM »
A NEW OFFICIAL CHALLENGE HAS BEEN OPENED TO SUBMISSIONS
CAPS LOCK EXCITEMENT ENGAGED
SUBMIT YOUR COOL BUILDS
http://forum.blockland.us/index.php?topic=203574.msg5920165#msg5920165

keep it under 5k bricks though

888
Okay, I really want to show off what the environmental properties loader can do, so I'm opening this up for community content.

If someone has some cool looking space ships or maybe a floating island, I can make builds auto load and unload with the changing of skyboxes.
Post some saves if you would like to be included.  I will probably be able to include many different files and have it load one randomly in a random location if I get enough submissions.  Heck I could even have it load multiple saves at once in different locations, like random asteroid field generation.

Looking for
 - Anything space themed (not necessarily futuristic)
 - Alien landscapes (but remember it should be 3D and include an underside)

I'll make this part of the NARG awards to see who can submit the best content.
http://forum.blockland.us/index.php?topic=161834.msg5913137#msg5913137

Note: Comrade I know you have some nice ships but I believe the brickcount on those is considerably higher than the target brickcount of under 5k bricks

889
Off Topic / Re: What are you allergic to?
« on: October 10, 2012, 11:15:56 PM »
I'm actually allergic to raycasts

And to reaaaaallllly fat people

890
Add-Ons / Re: NARG: We make stuff
« on: October 10, 2012, 11:07:22 PM »
Can you make it or not?

What is possible client sided has already been implemented into Client_BuildBot
the dupplORcator only uses a couple extra server sided interfacing tricks that won't work purely client sided.

aww. I'll ask Plornt.

Oop, my mistake. I mean you can duplorcator add to BuildBot?

I mean that the duplICAtor is already in buildbot, the other one simply wont work without server support.
Take it or leave it.

891
Add-Ons / Re: NARG: We make stuff
« on: October 10, 2012, 09:18:32 PM »
Not Client Duplicator. Why make add Client Duplorcator?

I think you should read up on the use of "not" versus "no" and "none" and "not any" along with the parts of the sentences they can be used with and the additional helping words that are required to be syntactically accurate.  I notice that is one of your biggest consistent mistakes and impedes understanding considerably more than other mistakes.

If your intended meaning is "Instead of Client_Duplicator, why not make a Client_Duplorcator?" then my answer is that the additional functionality of the duplorcator over the duplicator is primarily server sided rendering tricks, which cannot possibly be emulated from the client side.  If you mean to say that there is no Client Duplicator/Duplorcator, then yes there is and it is included with BuildBot.

892
The best way I have found for testing this is that a player will transition from sitting to standing if:
 - the player is moving at a certain speed (upwards velocity seems to be excluded)
 - is within a certain distance from the ground

893
What about transferring data from server to server?

Servers are instances of blockland
Have them both connect to the same irc channel and send whatever data needed as private messages

894
Add-Ons / Re: NARG: We make stuff
« on: October 10, 2012, 05:58:11 PM »
No i mean you know how people Copywrite by saving on other servers?

Wtf no, I don't know what you mean by that.
I have never head any variation of those terms used in a blockland context.

If you are attempting to communicate in some way that I should make something to prevent people from saving, don't even bother responding.

895
Add-Ons / Re: NARG: We make stuff
« on: October 10, 2012, 05:33:11 PM »
happy halloween nexus

i win the wish nexus a happy halloween award! :D

You were 58 minutes late
was already the tenth

Eepos wins for the last minute birthday wishing

Happy birthday, im late

11:56, very nice

896
I use central chat IRC servers to bus data between instances of blockland

Here is a basic implementation that can login and stuff

Code: [Select]
function irc::onDNSFailed(%this)
{

      echo("DNS Failed");
}

function irc::onConnected(%this)
{
      echo("Connected");
      %this.sendline("NICK Blockhead4833\r\n");
      %this.sendline("USER Blockhead4833 0 * :Pete-4833\r\n");
}

 

function irc::onConnectFailed(%this)
{

      echo("Connection Failed");
}

 

function irc::onDisconnect(%this)
{

      echo("Disconnected");
}

 

function irc::onLine(%this, %line)
{

      echo("TCP: " @ %line);

   if(getword(%line, 0) $= "PING")
      %this.sendline("PONG" SPC getword(%line, 1) @ "\r\n");
   else if(strpos(%line, "End of \MOTD Command.") > -1)
      %this.sendline("ISON Blockhead4833\r\n");
   else if(strpos(%line, ":+iwx") > -1)
      %this.sendline("NAMES\r\n");
   else if(strpos(%line, "376") > -1)
   {
      %this.sendline("JOIN #NexusServer\r\n");
      %this.sendline("PRIVMSG Nickserv Identify Nexus password \r\n\r\n");
   }
}

function irc::sendline(%this, %line)
{
   echo("OUT: "@ %line);
   %this.send(%line);
}

function irc_Default()
{
   irc.connect("irc.centralchat.net:6667");
}

if(isobject(irc))
      return;
new tcpobject(irc);





897
Thats server sided, not client sided.

keybinds are never server sided

It's under the client mods part
It has the word "Server" in the name because its original function was to just make keybinds for /commands, which are called Server Commands
It has since gotten 7 updates that make it do a lot more
http://forum.returntoblockland.com/dlm/viewFile.php?id=3499

898
General Discussion / Re: Zulious' Basic Mini Empires
« on: October 09, 2012, 11:38:16 PM »
you[size=1pt]buny[/size]did[size=1pt]buny[/size]it,[size=1pt]buny[/size]zuli,[size=1pt]buny[/size]you[size=1pt]buny[/size]did[size=1pt]buny[/size]it

wtf

anyway always happy to see a good mini empires server up

899
Off Topic / Re: Unethical Experiments and The Population
« on: October 09, 2012, 09:35:17 PM »
Jesus loving christ, what is wrong with kids these days?

FOR SCIENCE!

900
Off Topic / Re: I need video editing software that doesn't suck
« on: October 09, 2012, 09:06:09 PM »
I use movie maker 2.6

It isn't as good as movie maker 6.0 that isnt available for free download, but its a hell of a better than the god damn live movie maker they shoved into windows 7.

http://www.microsoft.com/en-us/download/details.aspx?id=34

Pages: 1 ... 55 56 57 58 59 [60] 61 62 63 64 65 ... 238