• Minecraft V34- Ride The Pig!
    5,001 replies, posted
[QUOTE=Chezhead;24109599][img]http://i904.photobucket.com/albums/ac250/Chhalo/chickenpc-1.png[/img] MAKE SOME PAPERCRAFT CHICKENS, FOOLS. Yeah.[/QUOTE] Is there a creeper papercraft?
In the minecart ride I posted earlier, yes a powered minecart CAN push the minecart all the way back up.
[QUOTE=iNova;24109726]I'll come if you're on it :buddy:[/QUOTE] and ill come if im given the IP :buddy:
[QUOTE=jaggzy;24109667]Going to have ago ill post results if i succeed in making it.[/QUOTE] oh god yes :D
[QUOTE=little.sparrow;24109743]and ill come if im given the IP :buddy:[/QUOTE] Well you should PM theHANGOVER for whitelisting then :buddy: I can't come on right now though , going to the beach for a few hours
[QUOTE=iNova;24109767]Well you should PM theHANGOVER for whitelisting then :buddy: I can't come on right now though , going to the beach for a few hours[/QUOTE] bum
[QUOTE=iNova;24109726]I'll come if you're on it :buddy: also, sparrow, it has a whitelist.[/QUOTE] Yeah, im about to get on in 2 seconds. See you there. [editline]11:55AM[/editline] Oh, now I see. Nevermind then :(
[QUOTE=Dan*;24109791]Yeah, im about to get on in 2 seconds. See you there. [editline]11:55AM[/editline] Oh, now I see. Nevermind then :([/QUOTE] I'll notify you when I'm back. Added on steam :buddy:
This might be a pretty stupid question but waht kind of mob makes a deep kind of humming/ groaning sound? I'm just clearing some lava for bucket use and I hear that sound closeby :ohdear:
[QUOTE=Mrfantasticool;24109844]This might be a pretty stupid question but waht kind of mob makes a deep kind of humming/ groaning sound? I'm just clearing some lava for bucket use and I hear that sound closeby :ohdear:[/QUOTE] Zombies
is there a non-whitelist server i can go to? :ohdear:
Nerdy's server is starting to go past the point of no return. There's swastikas everywhere, chunks of buildings missing, oh the humanity
[QUOTE=Fkpuz Version 1;24110127]Nerdy's server is starting to go past the point of no return. There's swastikas everywhere, chunks of buildings missing, oh the humanity[/QUOTE] Bound to happen sooner or later
[url=http://www.minecraft.net/play.jsp?server=bba3781a53fc6606639b2d5ce9c929ca]If you care to join.[/url] My server is up, this time with: [b]NO Nazi theme[/b], randomly generated map, lava, mountains of dirt, Goron City (in the making), and pure win (not really).
Finally generated a map with some decent cave systems near the spawn, so I started building a hilltop fort with an overhang. WIP Shots [URL=http://s272.photobucket.com/albums/jj177/Nerdyg33kzor/?action=view&current=Minecraft1.jpg][IMG]http://i272.photobucket.com/albums/jj177/Nerdyg33kzor/th_Minecraft1.jpg[/IMG][/URL] [URL=http://s272.photobucket.com/albums/jj177/Nerdyg33kzor/?action=view&current=Minecraft2.jpg][IMG]http://i272.photobucket.com/albums/jj177/Nerdyg33kzor/th_Minecraft2.jpg[/IMG][/URL] [URL=http://s272.photobucket.com/albums/jj177/Nerdyg33kzor/?action=view&current=Minecraft3.jpg][IMG]http://i272.photobucket.com/albums/jj177/Nerdyg33kzor/th_Minecraft3.jpg[/IMG][/URL] [URL=http://s272.photobucket.com/albums/jj177/Nerdyg33kzor/?action=view&current=Minecraft4.jpg][IMG]http://i272.photobucket.com/albums/jj177/Nerdyg33kzor/th_Minecraft4.jpg[/IMG][/URL] Before anyone asks, I'm not the same Nerdy as the one that runs Mineville. I guess it was only a matter of time before I ran into someone that wanted the same username as me...
having a hard time making a decent wheat texture :\
Nerdy got a new avatar? :wtc:
reposting: are there any non-whitelist servers up?
Notch apologized to me. YOU BETTER FUCKING BELIEVE IT. [url]http://twitter.com/dearnotch/status/21326028120[/url] ' @xnotch. Dear notch, I made you a comic. [url]http://imgur.com/qTTSa.png[/url] Love, dearnotch AKA redban. ' [url]http://twitter.com/xnotch/status/21326669729[/url] ' @dearnotch lol! :D Sorry about that! :-O '
The only glue i can find to stick the paper chicken together with is superglue.. this will not end well.
[QUOTE=Dan*;24110493]Nerdy got a new avatar? :wtc:[/QUOTE] [QUOTE]Before anyone asks, I'm not the same Nerdy as the one that runs Mineville. I guess it was only a matter of time before I ran into someone that wanted the same username as me...[/QUOTE]
Also: [url]http://notch.tumblr.com/post/963183697/working-on-server-side-inventory[/url] :siren: Working on server-side inventory :siren: There are a few stability issues with the client that worry me, and I will try to sort that out before I go on the trip to Finland next week, but more important is getting SMP more playable before then. I’m currently working on server-side inventory, and it’s going relatively well. I’m currently pulling on hard coded strands of spaghetti code, seeing what moves, then refactoring that out into a better designed code. See, when I first wrote the inventory, it was just a test to see if it was fun, and I’ve stuck to that code ever since since I never really had to change it. I probably would’ve saved myself some time if I had fixed the code immediately when it was still fresh in my mind. The worst part about refactoring code is that you spend hours working on something only to have it do the exact same thing when you’re done with it. The best part is that you feel much better about working with that code in the future. It’s very cleansing, in a boring kind of way. One interesting problem that came up was that of client-side prediction. Since the client is able to accurately predict inventory management 100% (with the exception of crafting, which I’m making controlled by the server, for modding reasons), there’s no reason to synch any state other than to tell the server what happens. Or so I thought! For example, another player can throw an item at you while you’re playing around in your inventory. If you split a stack client side, your inventory might end up being full, but the server thought you had room because of lag, and that item ends up getting lost. So instead of having the server assign new items a specific slot, it just goes “here, take this if you can”, and the client says either “ok, I put it in slot #7” or “no” as a reply. But then what about chests? I can either make chest only operatable by one player at a time, or I can make them fully synched by the server, meaning they would get noticeably laggy. I don’t want to lock chests to one user, as that’s prone to griefing, nor do I want to do the fully synchronous inventory management in them as it really ruins the smooth feeling. I could do some clever rollback scheme where the client will predict moves until the server says that a certain move was illegal (like if two players try to take the same item at the same time, only the first player should get it), but that might get annoying. You see yourself picking up an item, and you place it in your inventory, but then it vanishes. [why is tumblr refusing to post some entires?]
[QUOTE=hey5000;24110262][URL="http://www.minecraft.net/play.jsp?server=bba3781a53fc6606639b2d5ce9c929ca"]If you care to join.[/URL] My server is up, this time with: [B]NO Nazi theme[/B], randomly generated map, lava, mountains of dirt, Goron City (in the making), and pure win (not really).[/QUOTE] Isn't everybody on SMP now though?
[img]http://i.imgur.com/P3nY4.png[/img] :raise:
:woop: found more diamond
[img]http://i984.photobucket.com/albums/ae321/GSkeldon/ohgod.jpg[/img] :gonk:
[QUOTE=little.sparrow;24110528]reposting: are there any non-whitelist servers up?[/QUOTE] Yep! 130.13.201.51:13365 Kabookie's public server day!
[QUOTE=MAspiderface;24110707][img_thumb]http://i.imgur.com/P3nY4.png[/img_thumb] :raise:[/QUOTE] I don't see it.
[QUOTE=MajestikOrange;24110732][img]http://i984.photobucket.com/albums/ae321/GSkeldon/ohgod.jpg[/img] :gonk:[/QUOTE] :gonk: [editline]04:49PM[/editline] [QUOTE=tepholman;24110756]I don't see it.[/QUOTE] I found mushrooms in there
[QUOTE=MAspiderface;24110774] I found mushrooms in there[/QUOTE] Oh, cool. :geno:
Sorry, you need to Log In to post a reply to this thread.